circuit-json 0.0.433 → 0.0.434
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 +421 -183
- package/dist/index.mjs +32 -215
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export { BaseTscircuitUnit, parseAndConvertSiUnit } from 'format-si-unit';
|
|
2
3
|
|
|
3
4
|
declare const resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4
5
|
declare const capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -4126,9 +4127,9 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
4126
4127
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4127
4128
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4128
4129
|
}, "strip", z.ZodTypeAny, {
|
|
4130
|
+
type: "pcb_hole";
|
|
4129
4131
|
x: number;
|
|
4130
4132
|
y: number;
|
|
4131
|
-
type: "pcb_hole";
|
|
4132
4133
|
pcb_hole_id: string;
|
|
4133
4134
|
hole_shape: "circle";
|
|
4134
4135
|
hole_diameter: number;
|
|
@@ -4138,9 +4139,9 @@ declare const pcb_hole_circle: z.ZodObject<{
|
|
|
4138
4139
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4139
4140
|
soldermask_margin?: number | undefined;
|
|
4140
4141
|
}, {
|
|
4142
|
+
type: "pcb_hole";
|
|
4141
4143
|
x: string | number;
|
|
4142
4144
|
y: string | number;
|
|
4143
|
-
type: "pcb_hole";
|
|
4144
4145
|
hole_shape: "circle";
|
|
4145
4146
|
hole_diameter: number;
|
|
4146
4147
|
pcb_component_id?: string | undefined;
|
|
@@ -4163,9 +4164,9 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
4163
4164
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4164
4165
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4165
4166
|
}, "strip", z.ZodTypeAny, {
|
|
4167
|
+
type: "pcb_hole";
|
|
4166
4168
|
x: number;
|
|
4167
4169
|
y: number;
|
|
4168
|
-
type: "pcb_hole";
|
|
4169
4170
|
pcb_hole_id: string;
|
|
4170
4171
|
hole_shape: "circle";
|
|
4171
4172
|
hole_diameter: number;
|
|
@@ -4175,9 +4176,9 @@ declare const pcb_hole_circle_shape: z.ZodObject<{
|
|
|
4175
4176
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4176
4177
|
soldermask_margin?: number | undefined;
|
|
4177
4178
|
}, {
|
|
4179
|
+
type: "pcb_hole";
|
|
4178
4180
|
x: string | number;
|
|
4179
4181
|
y: string | number;
|
|
4180
|
-
type: "pcb_hole";
|
|
4181
4182
|
hole_shape: "circle";
|
|
4182
4183
|
hole_diameter: number;
|
|
4183
4184
|
pcb_component_id?: string | undefined;
|
|
@@ -4218,9 +4219,9 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
4218
4219
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4219
4220
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4220
4221
|
}, "strip", z.ZodTypeAny, {
|
|
4222
|
+
type: "pcb_hole";
|
|
4221
4223
|
x: number;
|
|
4222
4224
|
y: number;
|
|
4223
|
-
type: "pcb_hole";
|
|
4224
4225
|
pcb_hole_id: string;
|
|
4225
4226
|
hole_shape: "rect";
|
|
4226
4227
|
hole_width: number;
|
|
@@ -4231,9 +4232,9 @@ declare const pcb_hole_rect: z.ZodObject<{
|
|
|
4231
4232
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4232
4233
|
soldermask_margin?: number | undefined;
|
|
4233
4234
|
}, {
|
|
4235
|
+
type: "pcb_hole";
|
|
4234
4236
|
x: string | number;
|
|
4235
4237
|
y: string | number;
|
|
4236
|
-
type: "pcb_hole";
|
|
4237
4238
|
hole_shape: "rect";
|
|
4238
4239
|
hole_width: number;
|
|
4239
4240
|
hole_height: number;
|
|
@@ -4258,9 +4259,9 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
4258
4259
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4259
4260
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4260
4261
|
}, "strip", z.ZodTypeAny, {
|
|
4262
|
+
type: "pcb_hole";
|
|
4261
4263
|
x: number;
|
|
4262
4264
|
y: number;
|
|
4263
|
-
type: "pcb_hole";
|
|
4264
4265
|
pcb_hole_id: string;
|
|
4265
4266
|
hole_shape: "rect";
|
|
4266
4267
|
hole_width: number;
|
|
@@ -4271,9 +4272,9 @@ declare const pcb_hole_rect_shape: z.ZodObject<{
|
|
|
4271
4272
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4272
4273
|
soldermask_margin?: number | undefined;
|
|
4273
4274
|
}, {
|
|
4275
|
+
type: "pcb_hole";
|
|
4274
4276
|
x: string | number;
|
|
4275
4277
|
y: string | number;
|
|
4276
|
-
type: "pcb_hole";
|
|
4277
4278
|
hole_shape: "rect";
|
|
4278
4279
|
hole_width: number;
|
|
4279
4280
|
hole_height: number;
|
|
@@ -4315,9 +4316,9 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
4315
4316
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4316
4317
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4317
4318
|
}, "strip", z.ZodTypeAny, {
|
|
4319
|
+
type: "pcb_hole";
|
|
4318
4320
|
x: number;
|
|
4319
4321
|
y: number;
|
|
4320
|
-
type: "pcb_hole";
|
|
4321
4322
|
pcb_hole_id: string;
|
|
4322
4323
|
hole_shape: "circle" | "square";
|
|
4323
4324
|
hole_diameter: number;
|
|
@@ -4327,9 +4328,9 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
4327
4328
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4328
4329
|
soldermask_margin?: number | undefined;
|
|
4329
4330
|
}, {
|
|
4331
|
+
type: "pcb_hole";
|
|
4330
4332
|
x: string | number;
|
|
4331
4333
|
y: string | number;
|
|
4332
|
-
type: "pcb_hole";
|
|
4333
4334
|
hole_shape: "circle" | "square";
|
|
4334
4335
|
hole_diameter: number;
|
|
4335
4336
|
pcb_component_id?: string | undefined;
|
|
@@ -4352,9 +4353,9 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
4352
4353
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4353
4354
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4354
4355
|
}, "strip", z.ZodTypeAny, {
|
|
4356
|
+
type: "pcb_hole";
|
|
4355
4357
|
x: number;
|
|
4356
4358
|
y: number;
|
|
4357
|
-
type: "pcb_hole";
|
|
4358
4359
|
pcb_hole_id: string;
|
|
4359
4360
|
hole_shape: "circle" | "square";
|
|
4360
4361
|
hole_diameter: number;
|
|
@@ -4364,9 +4365,9 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
4364
4365
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4365
4366
|
soldermask_margin?: number | undefined;
|
|
4366
4367
|
}, {
|
|
4368
|
+
type: "pcb_hole";
|
|
4367
4369
|
x: string | number;
|
|
4368
4370
|
y: string | number;
|
|
4369
|
-
type: "pcb_hole";
|
|
4370
4371
|
hole_shape: "circle" | "square";
|
|
4371
4372
|
hole_diameter: number;
|
|
4372
4373
|
pcb_component_id?: string | undefined;
|
|
@@ -4410,9 +4411,9 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
4410
4411
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4411
4412
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4412
4413
|
}, "strip", z.ZodTypeAny, {
|
|
4414
|
+
type: "pcb_hole";
|
|
4413
4415
|
x: number;
|
|
4414
4416
|
y: number;
|
|
4415
|
-
type: "pcb_hole";
|
|
4416
4417
|
pcb_hole_id: string;
|
|
4417
4418
|
hole_shape: "oval";
|
|
4418
4419
|
hole_width: number;
|
|
@@ -4423,9 +4424,9 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
4423
4424
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4424
4425
|
soldermask_margin?: number | undefined;
|
|
4425
4426
|
}, {
|
|
4427
|
+
type: "pcb_hole";
|
|
4426
4428
|
x: string | number;
|
|
4427
4429
|
y: string | number;
|
|
4428
|
-
type: "pcb_hole";
|
|
4429
4430
|
hole_shape: "oval";
|
|
4430
4431
|
hole_width: number;
|
|
4431
4432
|
hole_height: number;
|
|
@@ -4450,9 +4451,9 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
4450
4451
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4451
4452
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4452
4453
|
}, "strip", z.ZodTypeAny, {
|
|
4454
|
+
type: "pcb_hole";
|
|
4453
4455
|
x: number;
|
|
4454
4456
|
y: number;
|
|
4455
|
-
type: "pcb_hole";
|
|
4456
4457
|
pcb_hole_id: string;
|
|
4457
4458
|
hole_shape: "oval";
|
|
4458
4459
|
hole_width: number;
|
|
@@ -4463,9 +4464,9 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
4463
4464
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4464
4465
|
soldermask_margin?: number | undefined;
|
|
4465
4466
|
}, {
|
|
4467
|
+
type: "pcb_hole";
|
|
4466
4468
|
x: string | number;
|
|
4467
4469
|
y: string | number;
|
|
4468
|
-
type: "pcb_hole";
|
|
4469
4470
|
hole_shape: "oval";
|
|
4470
4471
|
hole_width: number;
|
|
4471
4472
|
hole_height: number;
|
|
@@ -4508,9 +4509,9 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
4508
4509
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4509
4510
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4510
4511
|
}, "strip", z.ZodTypeAny, {
|
|
4512
|
+
type: "pcb_hole";
|
|
4511
4513
|
x: number;
|
|
4512
4514
|
y: number;
|
|
4513
|
-
type: "pcb_hole";
|
|
4514
4515
|
pcb_hole_id: string;
|
|
4515
4516
|
hole_shape: "pill";
|
|
4516
4517
|
hole_width: number;
|
|
@@ -4521,9 +4522,9 @@ declare const pcb_hole_pill: z.ZodObject<{
|
|
|
4521
4522
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4522
4523
|
soldermask_margin?: number | undefined;
|
|
4523
4524
|
}, {
|
|
4525
|
+
type: "pcb_hole";
|
|
4524
4526
|
x: string | number;
|
|
4525
4527
|
y: string | number;
|
|
4526
|
-
type: "pcb_hole";
|
|
4527
4528
|
hole_shape: "pill";
|
|
4528
4529
|
hole_width: number;
|
|
4529
4530
|
hole_height: number;
|
|
@@ -4548,9 +4549,9 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
4548
4549
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4549
4550
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4550
4551
|
}, "strip", z.ZodTypeAny, {
|
|
4552
|
+
type: "pcb_hole";
|
|
4551
4553
|
x: number;
|
|
4552
4554
|
y: number;
|
|
4553
|
-
type: "pcb_hole";
|
|
4554
4555
|
pcb_hole_id: string;
|
|
4555
4556
|
hole_shape: "pill";
|
|
4556
4557
|
hole_width: number;
|
|
@@ -4561,9 +4562,9 @@ declare const pcb_hole_pill_shape: z.ZodObject<{
|
|
|
4561
4562
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4562
4563
|
soldermask_margin?: number | undefined;
|
|
4563
4564
|
}, {
|
|
4565
|
+
type: "pcb_hole";
|
|
4564
4566
|
x: string | number;
|
|
4565
4567
|
y: string | number;
|
|
4566
|
-
type: "pcb_hole";
|
|
4567
4568
|
hole_shape: "pill";
|
|
4568
4569
|
hole_width: number;
|
|
4569
4570
|
hole_height: number;
|
|
@@ -4607,9 +4608,9 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
4607
4608
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4608
4609
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4609
4610
|
}, "strip", z.ZodTypeAny, {
|
|
4611
|
+
type: "pcb_hole";
|
|
4610
4612
|
x: number;
|
|
4611
4613
|
y: number;
|
|
4612
|
-
type: "pcb_hole";
|
|
4613
4614
|
pcb_hole_id: string;
|
|
4614
4615
|
hole_shape: "rotated_pill";
|
|
4615
4616
|
hole_width: number;
|
|
@@ -4621,9 +4622,9 @@ declare const pcb_hole_rotated_pill: z.ZodObject<{
|
|
|
4621
4622
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4622
4623
|
soldermask_margin?: number | undefined;
|
|
4623
4624
|
}, {
|
|
4625
|
+
type: "pcb_hole";
|
|
4624
4626
|
x: string | number;
|
|
4625
4627
|
y: string | number;
|
|
4626
|
-
type: "pcb_hole";
|
|
4627
4628
|
hole_shape: "rotated_pill";
|
|
4628
4629
|
hole_width: number;
|
|
4629
4630
|
hole_height: number;
|
|
@@ -4650,9 +4651,9 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
4650
4651
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4651
4652
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4652
4653
|
}, "strip", z.ZodTypeAny, {
|
|
4654
|
+
type: "pcb_hole";
|
|
4653
4655
|
x: number;
|
|
4654
4656
|
y: number;
|
|
4655
|
-
type: "pcb_hole";
|
|
4656
4657
|
pcb_hole_id: string;
|
|
4657
4658
|
hole_shape: "rotated_pill";
|
|
4658
4659
|
hole_width: number;
|
|
@@ -4664,9 +4665,9 @@ declare const pcb_hole_rotated_pill_shape: z.ZodObject<{
|
|
|
4664
4665
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4665
4666
|
soldermask_margin?: number | undefined;
|
|
4666
4667
|
}, {
|
|
4668
|
+
type: "pcb_hole";
|
|
4667
4669
|
x: string | number;
|
|
4668
4670
|
y: string | number;
|
|
4669
|
-
type: "pcb_hole";
|
|
4670
4671
|
hole_shape: "rotated_pill";
|
|
4671
4672
|
hole_width: number;
|
|
4672
4673
|
hole_height: number;
|
|
@@ -4710,9 +4711,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4710
4711
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4711
4712
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4712
4713
|
}, "strip", z.ZodTypeAny, {
|
|
4714
|
+
type: "pcb_hole";
|
|
4713
4715
|
x: number;
|
|
4714
4716
|
y: number;
|
|
4715
|
-
type: "pcb_hole";
|
|
4716
4717
|
pcb_hole_id: string;
|
|
4717
4718
|
hole_shape: "circle" | "square";
|
|
4718
4719
|
hole_diameter: number;
|
|
@@ -4722,9 +4723,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4722
4723
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4723
4724
|
soldermask_margin?: number | undefined;
|
|
4724
4725
|
}, {
|
|
4726
|
+
type: "pcb_hole";
|
|
4725
4727
|
x: string | number;
|
|
4726
4728
|
y: string | number;
|
|
4727
|
-
type: "pcb_hole";
|
|
4728
4729
|
hole_shape: "circle" | "square";
|
|
4729
4730
|
hole_diameter: number;
|
|
4730
4731
|
pcb_component_id?: string | undefined;
|
|
@@ -4747,9 +4748,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4747
4748
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4748
4749
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4749
4750
|
}, "strip", z.ZodTypeAny, {
|
|
4751
|
+
type: "pcb_hole";
|
|
4750
4752
|
x: number;
|
|
4751
4753
|
y: number;
|
|
4752
|
-
type: "pcb_hole";
|
|
4753
4754
|
pcb_hole_id: string;
|
|
4754
4755
|
hole_shape: "oval";
|
|
4755
4756
|
hole_width: number;
|
|
@@ -4760,9 +4761,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4760
4761
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4761
4762
|
soldermask_margin?: number | undefined;
|
|
4762
4763
|
}, {
|
|
4764
|
+
type: "pcb_hole";
|
|
4763
4765
|
x: string | number;
|
|
4764
4766
|
y: string | number;
|
|
4765
|
-
type: "pcb_hole";
|
|
4766
4767
|
hole_shape: "oval";
|
|
4767
4768
|
hole_width: number;
|
|
4768
4769
|
hole_height: number;
|
|
@@ -4786,9 +4787,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4786
4787
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4787
4788
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4788
4789
|
}, "strip", z.ZodTypeAny, {
|
|
4790
|
+
type: "pcb_hole";
|
|
4789
4791
|
x: number;
|
|
4790
4792
|
y: number;
|
|
4791
|
-
type: "pcb_hole";
|
|
4792
4793
|
pcb_hole_id: string;
|
|
4793
4794
|
hole_shape: "pill";
|
|
4794
4795
|
hole_width: number;
|
|
@@ -4799,9 +4800,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4799
4800
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4800
4801
|
soldermask_margin?: number | undefined;
|
|
4801
4802
|
}, {
|
|
4803
|
+
type: "pcb_hole";
|
|
4802
4804
|
x: string | number;
|
|
4803
4805
|
y: string | number;
|
|
4804
|
-
type: "pcb_hole";
|
|
4805
4806
|
hole_shape: "pill";
|
|
4806
4807
|
hole_width: number;
|
|
4807
4808
|
hole_height: number;
|
|
@@ -4826,9 +4827,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4826
4827
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4827
4828
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4828
4829
|
}, "strip", z.ZodTypeAny, {
|
|
4830
|
+
type: "pcb_hole";
|
|
4829
4831
|
x: number;
|
|
4830
4832
|
y: number;
|
|
4831
|
-
type: "pcb_hole";
|
|
4832
4833
|
pcb_hole_id: string;
|
|
4833
4834
|
hole_shape: "rotated_pill";
|
|
4834
4835
|
hole_width: number;
|
|
@@ -4840,9 +4841,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4840
4841
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4841
4842
|
soldermask_margin?: number | undefined;
|
|
4842
4843
|
}, {
|
|
4844
|
+
type: "pcb_hole";
|
|
4843
4845
|
x: string | number;
|
|
4844
4846
|
y: string | number;
|
|
4845
|
-
type: "pcb_hole";
|
|
4846
4847
|
hole_shape: "rotated_pill";
|
|
4847
4848
|
hole_width: number;
|
|
4848
4849
|
hole_height: number;
|
|
@@ -4866,9 +4867,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4866
4867
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4867
4868
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4868
4869
|
}, "strip", z.ZodTypeAny, {
|
|
4870
|
+
type: "pcb_hole";
|
|
4869
4871
|
x: number;
|
|
4870
4872
|
y: number;
|
|
4871
|
-
type: "pcb_hole";
|
|
4872
4873
|
pcb_hole_id: string;
|
|
4873
4874
|
hole_shape: "circle";
|
|
4874
4875
|
hole_diameter: number;
|
|
@@ -4878,9 +4879,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4878
4879
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4879
4880
|
soldermask_margin?: number | undefined;
|
|
4880
4881
|
}, {
|
|
4882
|
+
type: "pcb_hole";
|
|
4881
4883
|
x: string | number;
|
|
4882
4884
|
y: string | number;
|
|
4883
|
-
type: "pcb_hole";
|
|
4884
4885
|
hole_shape: "circle";
|
|
4885
4886
|
hole_diameter: number;
|
|
4886
4887
|
pcb_component_id?: string | undefined;
|
|
@@ -4903,9 +4904,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4903
4904
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
4904
4905
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
4905
4906
|
}, "strip", z.ZodTypeAny, {
|
|
4907
|
+
type: "pcb_hole";
|
|
4906
4908
|
x: number;
|
|
4907
4909
|
y: number;
|
|
4908
|
-
type: "pcb_hole";
|
|
4909
4910
|
pcb_hole_id: string;
|
|
4910
4911
|
hole_shape: "rect";
|
|
4911
4912
|
hole_width: number;
|
|
@@ -4916,9 +4917,9 @@ declare const pcb_hole: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUni
|
|
|
4916
4917
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
4917
4918
|
soldermask_margin?: number | undefined;
|
|
4918
4919
|
}, {
|
|
4920
|
+
type: "pcb_hole";
|
|
4919
4921
|
x: string | number;
|
|
4920
4922
|
y: string | number;
|
|
4921
|
-
type: "pcb_hole";
|
|
4922
4923
|
hole_shape: "rect";
|
|
4923
4924
|
hole_width: number;
|
|
4924
4925
|
hole_height: number;
|
|
@@ -5110,9 +5111,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5110
5111
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5111
5112
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5112
5113
|
}, "strip", z.ZodTypeAny, {
|
|
5114
|
+
type: "pcb_plated_hole";
|
|
5113
5115
|
x: number;
|
|
5114
5116
|
y: number;
|
|
5115
|
-
type: "pcb_plated_hole";
|
|
5116
5117
|
shape: "circle";
|
|
5117
5118
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
5118
5119
|
hole_diameter: number;
|
|
@@ -5126,9 +5127,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5126
5127
|
port_hints?: string[] | undefined;
|
|
5127
5128
|
pcb_port_id?: string | undefined;
|
|
5128
5129
|
}, {
|
|
5130
|
+
type: "pcb_plated_hole";
|
|
5129
5131
|
x: string | number;
|
|
5130
5132
|
y: string | number;
|
|
5131
|
-
type: "pcb_plated_hole";
|
|
5132
5133
|
shape: "circle";
|
|
5133
5134
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5134
5135
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5171,9 +5172,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5171
5172
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5172
5173
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5173
5174
|
}, "strip", z.ZodTypeAny, {
|
|
5175
|
+
type: "pcb_plated_hole";
|
|
5174
5176
|
x: number;
|
|
5175
5177
|
y: number;
|
|
5176
|
-
type: "pcb_plated_hole";
|
|
5177
5178
|
shape: "oval" | "pill";
|
|
5178
5179
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
5179
5180
|
hole_width: number;
|
|
@@ -5190,9 +5191,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5190
5191
|
port_hints?: string[] | undefined;
|
|
5191
5192
|
pcb_port_id?: string | undefined;
|
|
5192
5193
|
}, {
|
|
5194
|
+
type: "pcb_plated_hole";
|
|
5193
5195
|
x: string | number;
|
|
5194
5196
|
y: string | number;
|
|
5195
|
-
type: "pcb_plated_hole";
|
|
5196
5197
|
shape: "oval" | "pill";
|
|
5197
5198
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5198
5199
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5242,9 +5243,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5242
5243
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5243
5244
|
rect_ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5244
5245
|
}, "strip", z.ZodTypeAny, {
|
|
5246
|
+
type: "pcb_plated_hole";
|
|
5245
5247
|
x: number;
|
|
5246
5248
|
y: number;
|
|
5247
|
-
type: "pcb_plated_hole";
|
|
5248
5249
|
shape: "circular_hole_with_rect_pad";
|
|
5249
5250
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
5250
5251
|
hole_shape: "circle";
|
|
@@ -5265,9 +5266,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5265
5266
|
rect_border_radius?: number | undefined;
|
|
5266
5267
|
rect_ccw_rotation?: number | undefined;
|
|
5267
5268
|
}, {
|
|
5269
|
+
type: "pcb_plated_hole";
|
|
5268
5270
|
x: string | number;
|
|
5269
5271
|
y: string | number;
|
|
5270
|
-
type: "pcb_plated_hole";
|
|
5271
5272
|
shape: "circular_hole_with_rect_pad";
|
|
5272
5273
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5273
5274
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5321,9 +5322,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5321
5322
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5322
5323
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5323
5324
|
}, "strip", z.ZodTypeAny, {
|
|
5325
|
+
type: "pcb_plated_hole";
|
|
5324
5326
|
x: number;
|
|
5325
5327
|
y: number;
|
|
5326
|
-
type: "pcb_plated_hole";
|
|
5327
5328
|
shape: "pill_hole_with_rect_pad";
|
|
5328
5329
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
5329
5330
|
hole_shape: "pill";
|
|
@@ -5344,9 +5345,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5344
5345
|
pcb_port_id?: string | undefined;
|
|
5345
5346
|
rect_border_radius?: number | undefined;
|
|
5346
5347
|
}, {
|
|
5348
|
+
type: "pcb_plated_hole";
|
|
5347
5349
|
x: string | number;
|
|
5348
5350
|
y: string | number;
|
|
5349
|
-
type: "pcb_plated_hole";
|
|
5350
5351
|
shape: "pill_hole_with_rect_pad";
|
|
5351
5352
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5352
5353
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5402,9 +5403,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5402
5403
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5403
5404
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5404
5405
|
}, "strip", z.ZodTypeAny, {
|
|
5406
|
+
type: "pcb_plated_hole";
|
|
5405
5407
|
x: number;
|
|
5406
5408
|
y: number;
|
|
5407
|
-
type: "pcb_plated_hole";
|
|
5408
5409
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
5409
5410
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
5410
5411
|
hole_shape: "rotated_pill";
|
|
@@ -5427,9 +5428,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5427
5428
|
pcb_port_id?: string | undefined;
|
|
5428
5429
|
rect_border_radius?: number | undefined;
|
|
5429
5430
|
}, {
|
|
5431
|
+
type: "pcb_plated_hole";
|
|
5430
5432
|
x: string | number;
|
|
5431
5433
|
y: string | number;
|
|
5432
|
-
type: "pcb_plated_hole";
|
|
5433
5434
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
5434
5435
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5435
5436
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5493,9 +5494,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5493
5494
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5494
5495
|
ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5495
5496
|
}, "strip", z.ZodTypeAny, {
|
|
5497
|
+
type: "pcb_plated_hole";
|
|
5496
5498
|
x: number;
|
|
5497
5499
|
y: number;
|
|
5498
|
-
type: "pcb_plated_hole";
|
|
5499
5500
|
shape: "hole_with_polygon_pad";
|
|
5500
5501
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
5501
5502
|
hole_shape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
@@ -5518,9 +5519,9 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
5518
5519
|
port_hints?: string[] | undefined;
|
|
5519
5520
|
pcb_port_id?: string | undefined;
|
|
5520
5521
|
}, {
|
|
5522
|
+
type: "pcb_plated_hole";
|
|
5521
5523
|
x: string | number;
|
|
5522
5524
|
y: string | number;
|
|
5523
|
-
type: "pcb_plated_hole";
|
|
5524
5525
|
shape: "hole_with_polygon_pad";
|
|
5525
5526
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5526
5527
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5576,9 +5577,9 @@ declare const pcb_port: z.ZodObject<{
|
|
|
5576
5577
|
}>, "many">;
|
|
5577
5578
|
is_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
5578
5579
|
}, "strip", z.ZodTypeAny, {
|
|
5580
|
+
type: "pcb_port";
|
|
5579
5581
|
x: number;
|
|
5580
5582
|
y: number;
|
|
5581
|
-
type: "pcb_port";
|
|
5582
5583
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
5583
5584
|
pcb_port_id: string;
|
|
5584
5585
|
source_port_id: string;
|
|
@@ -5587,9 +5588,9 @@ declare const pcb_port: z.ZodObject<{
|
|
|
5587
5588
|
pcb_group_id?: string | undefined;
|
|
5588
5589
|
is_board_pinout?: boolean | undefined;
|
|
5589
5590
|
}, {
|
|
5591
|
+
type: "pcb_port";
|
|
5590
5592
|
x: string | number;
|
|
5591
5593
|
y: string | number;
|
|
5592
|
-
type: "pcb_port";
|
|
5593
5594
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5594
5595
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5595
5596
|
})[];
|
|
@@ -5651,9 +5652,9 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
5651
5652
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
5652
5653
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5653
5654
|
}, "strip", z.ZodTypeAny, {
|
|
5655
|
+
type: "pcb_smtpad";
|
|
5654
5656
|
x: number;
|
|
5655
5657
|
y: number;
|
|
5656
|
-
type: "pcb_smtpad";
|
|
5657
5658
|
width: number;
|
|
5658
5659
|
height: number;
|
|
5659
5660
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5668,9 +5669,9 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
5668
5669
|
port_hints?: string[] | undefined;
|
|
5669
5670
|
pcb_port_id?: string | undefined;
|
|
5670
5671
|
}, {
|
|
5672
|
+
type: "pcb_smtpad";
|
|
5671
5673
|
x: string | number;
|
|
5672
5674
|
y: string | number;
|
|
5673
|
-
type: "pcb_smtpad";
|
|
5674
5675
|
width: number;
|
|
5675
5676
|
height: number;
|
|
5676
5677
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -5711,9 +5712,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5711
5712
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
5712
5713
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5713
5714
|
}, "strip", z.ZodTypeAny, {
|
|
5715
|
+
type: "pcb_smtpad";
|
|
5714
5716
|
x: number;
|
|
5715
5717
|
y: number;
|
|
5716
|
-
type: "pcb_smtpad";
|
|
5717
5718
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5718
5719
|
shape: "circle";
|
|
5719
5720
|
pcb_smtpad_id: string;
|
|
@@ -5726,9 +5727,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5726
5727
|
port_hints?: string[] | undefined;
|
|
5727
5728
|
pcb_port_id?: string | undefined;
|
|
5728
5729
|
}, {
|
|
5730
|
+
type: "pcb_smtpad";
|
|
5729
5731
|
x: string | number;
|
|
5730
5732
|
y: string | number;
|
|
5731
|
-
type: "pcb_smtpad";
|
|
5732
5733
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
5733
5734
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5734
5735
|
};
|
|
@@ -5773,9 +5774,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5773
5774
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
5774
5775
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
5775
5776
|
}, "strip", z.ZodTypeAny, {
|
|
5777
|
+
type: "pcb_smtpad";
|
|
5776
5778
|
x: number;
|
|
5777
5779
|
y: number;
|
|
5778
|
-
type: "pcb_smtpad";
|
|
5779
5780
|
width: number;
|
|
5780
5781
|
height: number;
|
|
5781
5782
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5795,9 +5796,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5795
5796
|
soldermask_margin_right?: number | undefined;
|
|
5796
5797
|
soldermask_margin_bottom?: number | undefined;
|
|
5797
5798
|
}, {
|
|
5799
|
+
type: "pcb_smtpad";
|
|
5798
5800
|
x: string | number;
|
|
5799
5801
|
y: string | number;
|
|
5800
|
-
type: "pcb_smtpad";
|
|
5801
5802
|
width: number;
|
|
5802
5803
|
height: number;
|
|
5803
5804
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -5850,9 +5851,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5850
5851
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
5851
5852
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
5852
5853
|
}, "strip", z.ZodTypeAny, {
|
|
5854
|
+
type: "pcb_smtpad";
|
|
5853
5855
|
x: number;
|
|
5854
5856
|
y: number;
|
|
5855
|
-
type: "pcb_smtpad";
|
|
5856
5857
|
width: number;
|
|
5857
5858
|
height: number;
|
|
5858
5859
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5873,9 +5874,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5873
5874
|
soldermask_margin_right?: number | undefined;
|
|
5874
5875
|
soldermask_margin_bottom?: number | undefined;
|
|
5875
5876
|
}, {
|
|
5877
|
+
type: "pcb_smtpad";
|
|
5876
5878
|
x: string | number;
|
|
5877
5879
|
y: string | number;
|
|
5878
|
-
type: "pcb_smtpad";
|
|
5879
5880
|
width: number;
|
|
5880
5881
|
height: number;
|
|
5881
5882
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -5924,9 +5925,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5924
5925
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
5925
5926
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5926
5927
|
}, "strip", z.ZodTypeAny, {
|
|
5928
|
+
type: "pcb_smtpad";
|
|
5927
5929
|
x: number;
|
|
5928
5930
|
y: number;
|
|
5929
|
-
type: "pcb_smtpad";
|
|
5930
5931
|
width: number;
|
|
5931
5932
|
height: number;
|
|
5932
5933
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -5942,9 +5943,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5942
5943
|
port_hints?: string[] | undefined;
|
|
5943
5944
|
pcb_port_id?: string | undefined;
|
|
5944
5945
|
}, {
|
|
5946
|
+
type: "pcb_smtpad";
|
|
5945
5947
|
x: string | number;
|
|
5946
5948
|
y: string | number;
|
|
5947
|
-
type: "pcb_smtpad";
|
|
5948
5949
|
width: number;
|
|
5949
5950
|
height: number;
|
|
5950
5951
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -5987,9 +5988,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5987
5988
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
5988
5989
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
5989
5990
|
}, "strip", z.ZodTypeAny, {
|
|
5991
|
+
type: "pcb_smtpad";
|
|
5990
5992
|
x: number;
|
|
5991
5993
|
y: number;
|
|
5992
|
-
type: "pcb_smtpad";
|
|
5993
5994
|
width: number;
|
|
5994
5995
|
height: number;
|
|
5995
5996
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -6004,9 +6005,9 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
6004
6005
|
port_hints?: string[] | undefined;
|
|
6005
6006
|
pcb_port_id?: string | undefined;
|
|
6006
6007
|
}, {
|
|
6008
|
+
type: "pcb_smtpad";
|
|
6007
6009
|
x: string | number;
|
|
6008
6010
|
y: string | number;
|
|
6009
|
-
type: "pcb_smtpad";
|
|
6010
6011
|
width: number;
|
|
6011
6012
|
height: number;
|
|
6012
6013
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -6247,9 +6248,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6247
6248
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
6248
6249
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
6249
6250
|
}, "strip", z.ZodTypeAny, {
|
|
6251
|
+
type: "pcb_solder_paste";
|
|
6250
6252
|
x: number;
|
|
6251
6253
|
y: number;
|
|
6252
|
-
type: "pcb_solder_paste";
|
|
6253
6254
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6254
6255
|
shape: "circle";
|
|
6255
6256
|
radius: number;
|
|
@@ -6259,9 +6260,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6259
6260
|
pcb_group_id?: string | undefined;
|
|
6260
6261
|
pcb_smtpad_id?: string | undefined;
|
|
6261
6262
|
}, {
|
|
6263
|
+
type: "pcb_solder_paste";
|
|
6262
6264
|
x: string | number;
|
|
6263
6265
|
y: string | number;
|
|
6264
|
-
type: "pcb_solder_paste";
|
|
6265
6266
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6266
6267
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6267
6268
|
};
|
|
@@ -6294,9 +6295,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6294
6295
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
6295
6296
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
6296
6297
|
}, "strip", z.ZodTypeAny, {
|
|
6298
|
+
type: "pcb_solder_paste";
|
|
6297
6299
|
x: number;
|
|
6298
6300
|
y: number;
|
|
6299
|
-
type: "pcb_solder_paste";
|
|
6300
6301
|
width: number;
|
|
6301
6302
|
height: number;
|
|
6302
6303
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -6307,9 +6308,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6307
6308
|
pcb_group_id?: string | undefined;
|
|
6308
6309
|
pcb_smtpad_id?: string | undefined;
|
|
6309
6310
|
}, {
|
|
6311
|
+
type: "pcb_solder_paste";
|
|
6310
6312
|
x: string | number;
|
|
6311
6313
|
y: string | number;
|
|
6312
|
-
type: "pcb_solder_paste";
|
|
6313
6314
|
width: number;
|
|
6314
6315
|
height: number;
|
|
6315
6316
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -6344,9 +6345,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6344
6345
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
6345
6346
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
6346
6347
|
}, "strip", z.ZodTypeAny, {
|
|
6348
|
+
type: "pcb_solder_paste";
|
|
6347
6349
|
x: number;
|
|
6348
6350
|
y: number;
|
|
6349
|
-
type: "pcb_solder_paste";
|
|
6350
6351
|
width: number;
|
|
6351
6352
|
height: number;
|
|
6352
6353
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -6358,9 +6359,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6358
6359
|
pcb_group_id?: string | undefined;
|
|
6359
6360
|
pcb_smtpad_id?: string | undefined;
|
|
6360
6361
|
}, {
|
|
6362
|
+
type: "pcb_solder_paste";
|
|
6361
6363
|
x: string | number;
|
|
6362
6364
|
y: string | number;
|
|
6363
|
-
type: "pcb_solder_paste";
|
|
6364
6365
|
width: number;
|
|
6365
6366
|
height: number;
|
|
6366
6367
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -6396,9 +6397,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6396
6397
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
6397
6398
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
6398
6399
|
}, "strip", z.ZodTypeAny, {
|
|
6400
|
+
type: "pcb_solder_paste";
|
|
6399
6401
|
x: number;
|
|
6400
6402
|
y: number;
|
|
6401
|
-
type: "pcb_solder_paste";
|
|
6402
6403
|
width: number;
|
|
6403
6404
|
height: number;
|
|
6404
6405
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -6410,9 +6411,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6410
6411
|
pcb_group_id?: string | undefined;
|
|
6411
6412
|
pcb_smtpad_id?: string | undefined;
|
|
6412
6413
|
}, {
|
|
6414
|
+
type: "pcb_solder_paste";
|
|
6413
6415
|
x: string | number;
|
|
6414
6416
|
y: string | number;
|
|
6415
|
-
type: "pcb_solder_paste";
|
|
6416
6417
|
width: number;
|
|
6417
6418
|
height: number;
|
|
6418
6419
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -6447,9 +6448,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6447
6448
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
6448
6449
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
6449
6450
|
}, "strip", z.ZodTypeAny, {
|
|
6451
|
+
type: "pcb_solder_paste";
|
|
6450
6452
|
x: number;
|
|
6451
6453
|
y: number;
|
|
6452
|
-
type: "pcb_solder_paste";
|
|
6453
6454
|
width: number;
|
|
6454
6455
|
height: number;
|
|
6455
6456
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -6460,9 +6461,9 @@ declare const pcb_solder_paste: z.ZodUnion<[z.ZodObject<{
|
|
|
6460
6461
|
pcb_group_id?: string | undefined;
|
|
6461
6462
|
pcb_smtpad_id?: string | undefined;
|
|
6462
6463
|
}, {
|
|
6464
|
+
type: "pcb_solder_paste";
|
|
6463
6465
|
x: string | number;
|
|
6464
6466
|
y: string | number;
|
|
6465
|
-
type: "pcb_solder_paste";
|
|
6466
6467
|
width: number;
|
|
6467
6468
|
height: number;
|
|
6468
6469
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -7722,9 +7723,9 @@ declare const pcb_via: z.ZodObject<{
|
|
|
7722
7723
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
7723
7724
|
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
7724
7725
|
}, "strip", z.ZodTypeAny, {
|
|
7726
|
+
type: "pcb_via";
|
|
7725
7727
|
x: number;
|
|
7726
7728
|
y: number;
|
|
7727
|
-
type: "pcb_via";
|
|
7728
7729
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
7729
7730
|
hole_diameter: number;
|
|
7730
7731
|
outer_diameter: number;
|
|
@@ -7739,9 +7740,9 @@ declare const pcb_via: z.ZodObject<{
|
|
|
7739
7740
|
net_assigned?: boolean | undefined;
|
|
7740
7741
|
is_tented?: boolean | undefined;
|
|
7741
7742
|
}, {
|
|
7743
|
+
type: "pcb_via";
|
|
7742
7744
|
x: string | number;
|
|
7743
7745
|
y: string | number;
|
|
7744
|
-
type: "pcb_via";
|
|
7745
7746
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
7746
7747
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
7747
7748
|
})[];
|
|
@@ -11231,9 +11232,9 @@ declare const pcb_breakout_point: z.ZodObject<{
|
|
|
11231
11232
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11232
11233
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11233
11234
|
}, "strip", z.ZodTypeAny, {
|
|
11235
|
+
type: "pcb_breakout_point";
|
|
11234
11236
|
x: number;
|
|
11235
11237
|
y: number;
|
|
11236
|
-
type: "pcb_breakout_point";
|
|
11237
11238
|
pcb_group_id: string;
|
|
11238
11239
|
pcb_breakout_point_id: string;
|
|
11239
11240
|
subcircuit_id?: string | undefined;
|
|
@@ -11241,9 +11242,9 @@ declare const pcb_breakout_point: z.ZodObject<{
|
|
|
11241
11242
|
source_trace_id?: string | undefined;
|
|
11242
11243
|
source_net_id?: string | undefined;
|
|
11243
11244
|
}, {
|
|
11245
|
+
type: "pcb_breakout_point";
|
|
11244
11246
|
x: string | number;
|
|
11245
11247
|
y: string | number;
|
|
11246
|
-
type: "pcb_breakout_point";
|
|
11247
11248
|
pcb_group_id: string;
|
|
11248
11249
|
subcircuit_id?: string | undefined;
|
|
11249
11250
|
source_port_id?: string | undefined;
|
|
@@ -12867,9 +12868,9 @@ declare const schematic_box: z.ZodObject<{
|
|
|
12867
12868
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12868
12869
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12869
12870
|
}, "strip", z.ZodTypeAny, {
|
|
12871
|
+
type: "schematic_box";
|
|
12870
12872
|
x: number;
|
|
12871
12873
|
y: number;
|
|
12872
|
-
type: "schematic_box";
|
|
12873
12874
|
width: number;
|
|
12874
12875
|
height: number;
|
|
12875
12876
|
is_dashed: boolean;
|
|
@@ -12877,9 +12878,9 @@ declare const schematic_box: z.ZodObject<{
|
|
|
12877
12878
|
schematic_component_id?: string | undefined;
|
|
12878
12879
|
schematic_symbol_id?: string | undefined;
|
|
12879
12880
|
}, {
|
|
12881
|
+
type: "schematic_box";
|
|
12880
12882
|
x: string | number;
|
|
12881
12883
|
y: string | number;
|
|
12882
|
-
type: "schematic_box";
|
|
12883
12884
|
width: string | number;
|
|
12884
12885
|
height: string | number;
|
|
12885
12886
|
subcircuit_id?: string | undefined;
|
|
@@ -25819,6 +25820,11 @@ declare const simulation_ac_voltage_source: z.ZodObject<{
|
|
|
25819
25820
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
25820
25821
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25821
25822
|
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
25823
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25824
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25825
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25826
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25827
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25822
25828
|
}, "strip", z.ZodTypeAny, {
|
|
25823
25829
|
type: "simulation_voltage_source";
|
|
25824
25830
|
simulation_voltage_source_id: string;
|
|
@@ -25833,6 +25839,11 @@ declare const simulation_ac_voltage_source: z.ZodObject<{
|
|
|
25833
25839
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
25834
25840
|
phase?: number | undefined;
|
|
25835
25841
|
duty_cycle?: number | undefined;
|
|
25842
|
+
pulse_delay?: number | undefined;
|
|
25843
|
+
rise_time?: number | undefined;
|
|
25844
|
+
fall_time?: number | undefined;
|
|
25845
|
+
pulse_width?: number | undefined;
|
|
25846
|
+
period?: number | undefined;
|
|
25836
25847
|
}, {
|
|
25837
25848
|
type: "simulation_voltage_source";
|
|
25838
25849
|
is_dc_source: false;
|
|
@@ -25847,6 +25858,11 @@ declare const simulation_ac_voltage_source: z.ZodObject<{
|
|
|
25847
25858
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
25848
25859
|
phase?: string | number | undefined;
|
|
25849
25860
|
duty_cycle?: string | number | undefined;
|
|
25861
|
+
pulse_delay?: string | number | undefined;
|
|
25862
|
+
rise_time?: string | number | undefined;
|
|
25863
|
+
fall_time?: string | number | undefined;
|
|
25864
|
+
pulse_width?: string | number | undefined;
|
|
25865
|
+
period?: string | number | undefined;
|
|
25850
25866
|
}>;
|
|
25851
25867
|
type SimulationAcVoltageSourceInput = z.input<typeof simulation_ac_voltage_source>;
|
|
25852
25868
|
declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
@@ -25890,6 +25906,11 @@ declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
|
25890
25906
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
25891
25907
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25892
25908
|
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
25909
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25910
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25911
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25912
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25913
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25893
25914
|
}, "strip", z.ZodTypeAny, {
|
|
25894
25915
|
type: "simulation_voltage_source";
|
|
25895
25916
|
simulation_voltage_source_id: string;
|
|
@@ -25904,6 +25925,11 @@ declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
|
25904
25925
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
25905
25926
|
phase?: number | undefined;
|
|
25906
25927
|
duty_cycle?: number | undefined;
|
|
25928
|
+
pulse_delay?: number | undefined;
|
|
25929
|
+
rise_time?: number | undefined;
|
|
25930
|
+
fall_time?: number | undefined;
|
|
25931
|
+
pulse_width?: number | undefined;
|
|
25932
|
+
period?: number | undefined;
|
|
25907
25933
|
}, {
|
|
25908
25934
|
type: "simulation_voltage_source";
|
|
25909
25935
|
is_dc_source: false;
|
|
@@ -25918,6 +25944,11 @@ declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
|
25918
25944
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
25919
25945
|
phase?: string | number | undefined;
|
|
25920
25946
|
duty_cycle?: string | number | undefined;
|
|
25947
|
+
pulse_delay?: string | number | undefined;
|
|
25948
|
+
rise_time?: string | number | undefined;
|
|
25949
|
+
fall_time?: string | number | undefined;
|
|
25950
|
+
pulse_width?: string | number | undefined;
|
|
25951
|
+
period?: string | number | undefined;
|
|
25921
25952
|
}>]>;
|
|
25922
25953
|
type SimulationVoltageSourceInput = z.input<typeof simulation_voltage_source>;
|
|
25923
25954
|
/**
|
|
@@ -25951,6 +25982,11 @@ interface SimulationAcVoltageSource {
|
|
|
25951
25982
|
wave_shape?: WaveShape;
|
|
25952
25983
|
phase?: number;
|
|
25953
25984
|
duty_cycle?: number;
|
|
25985
|
+
pulse_delay?: number;
|
|
25986
|
+
rise_time?: number;
|
|
25987
|
+
fall_time?: number;
|
|
25988
|
+
pulse_width?: number;
|
|
25989
|
+
period?: number;
|
|
25954
25990
|
}
|
|
25955
25991
|
type SimulationVoltageSource = SimulationDcVoltageSource | SimulationAcVoltageSource;
|
|
25956
25992
|
|
|
@@ -26133,6 +26169,28 @@ type SimulationCurrentSource = SimulationDcCurrentSource | SimulationAcCurrentSo
|
|
|
26133
26169
|
|
|
26134
26170
|
declare const experiment_type: z.ZodUnion<[z.ZodLiteral<"spice_dc_sweep">, z.ZodLiteral<"spice_dc_operating_point">, z.ZodLiteral<"spice_transient_analysis">, z.ZodLiteral<"spice_ac_analysis">]>;
|
|
26135
26171
|
type ExperimentType = z.infer<typeof experiment_type>;
|
|
26172
|
+
declare const spice_simulation_options: z.ZodObject<{
|
|
26173
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
26174
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
26175
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
26176
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
26177
|
+
}, "strip", z.ZodTypeAny, {
|
|
26178
|
+
method?: "trap" | "gear" | undefined;
|
|
26179
|
+
reltol?: string | number | undefined;
|
|
26180
|
+
abstol?: string | number | undefined;
|
|
26181
|
+
vntol?: string | number | undefined;
|
|
26182
|
+
}, {
|
|
26183
|
+
method?: "trap" | "gear" | undefined;
|
|
26184
|
+
reltol?: string | number | undefined;
|
|
26185
|
+
abstol?: string | number | undefined;
|
|
26186
|
+
vntol?: string | number | undefined;
|
|
26187
|
+
}>;
|
|
26188
|
+
interface SpiceSimulationOptions {
|
|
26189
|
+
method?: "trap" | "gear";
|
|
26190
|
+
reltol?: number | string;
|
|
26191
|
+
abstol?: number | string;
|
|
26192
|
+
vntol?: number | string;
|
|
26193
|
+
}
|
|
26136
26194
|
interface SimulationExperiment {
|
|
26137
26195
|
type: "simulation_experiment";
|
|
26138
26196
|
simulation_experiment_id: string;
|
|
@@ -26141,6 +26199,7 @@ interface SimulationExperiment {
|
|
|
26141
26199
|
time_per_step?: number;
|
|
26142
26200
|
start_time_ms?: number;
|
|
26143
26201
|
end_time_ms?: number;
|
|
26202
|
+
spice_options?: SpiceSimulationOptions;
|
|
26144
26203
|
}
|
|
26145
26204
|
declare const simulation_experiment: z.ZodObject<{
|
|
26146
26205
|
type: z.ZodLiteral<"simulation_experiment">;
|
|
@@ -26150,6 +26209,22 @@ declare const simulation_experiment: z.ZodObject<{
|
|
|
26150
26209
|
time_per_step: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26151
26210
|
start_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26152
26211
|
end_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26212
|
+
spice_options: z.ZodOptional<z.ZodObject<{
|
|
26213
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
26214
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
26215
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
26216
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
26217
|
+
}, "strip", z.ZodTypeAny, {
|
|
26218
|
+
method?: "trap" | "gear" | undefined;
|
|
26219
|
+
reltol?: string | number | undefined;
|
|
26220
|
+
abstol?: string | number | undefined;
|
|
26221
|
+
vntol?: string | number | undefined;
|
|
26222
|
+
}, {
|
|
26223
|
+
method?: "trap" | "gear" | undefined;
|
|
26224
|
+
reltol?: string | number | undefined;
|
|
26225
|
+
abstol?: string | number | undefined;
|
|
26226
|
+
vntol?: string | number | undefined;
|
|
26227
|
+
}>>;
|
|
26153
26228
|
}, "strip", z.ZodTypeAny, {
|
|
26154
26229
|
type: "simulation_experiment";
|
|
26155
26230
|
name: string;
|
|
@@ -26158,6 +26233,12 @@ declare const simulation_experiment: z.ZodObject<{
|
|
|
26158
26233
|
time_per_step?: number | undefined;
|
|
26159
26234
|
start_time_ms?: number | undefined;
|
|
26160
26235
|
end_time_ms?: number | undefined;
|
|
26236
|
+
spice_options?: {
|
|
26237
|
+
method?: "trap" | "gear" | undefined;
|
|
26238
|
+
reltol?: string | number | undefined;
|
|
26239
|
+
abstol?: string | number | undefined;
|
|
26240
|
+
vntol?: string | number | undefined;
|
|
26241
|
+
} | undefined;
|
|
26161
26242
|
}, {
|
|
26162
26243
|
type: "simulation_experiment";
|
|
26163
26244
|
name: string;
|
|
@@ -26166,6 +26247,12 @@ declare const simulation_experiment: z.ZodObject<{
|
|
|
26166
26247
|
time_per_step?: string | number | undefined;
|
|
26167
26248
|
start_time_ms?: string | number | undefined;
|
|
26168
26249
|
end_time_ms?: string | number | undefined;
|
|
26250
|
+
spice_options?: {
|
|
26251
|
+
method?: "trap" | "gear" | undefined;
|
|
26252
|
+
reltol?: string | number | undefined;
|
|
26253
|
+
abstol?: string | number | undefined;
|
|
26254
|
+
vntol?: string | number | undefined;
|
|
26255
|
+
} | undefined;
|
|
26169
26256
|
}>;
|
|
26170
26257
|
type SimulationExperimentInput = z.input<typeof simulation_experiment>;
|
|
26171
26258
|
|
|
@@ -28520,6 +28607,11 @@ declare const source_simple_voltage_source: z.ZodObject<{
|
|
|
28520
28607
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
28521
28608
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28522
28609
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
28610
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28611
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28612
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28613
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28614
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28523
28615
|
}, "strip", z.ZodTypeAny, {
|
|
28524
28616
|
type: "source_component";
|
|
28525
28617
|
name: string;
|
|
@@ -28533,6 +28625,11 @@ declare const source_simple_voltage_source: z.ZodObject<{
|
|
|
28533
28625
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
28534
28626
|
phase?: number | undefined;
|
|
28535
28627
|
duty_cycle?: number | undefined;
|
|
28628
|
+
pulse_delay?: number | undefined;
|
|
28629
|
+
rise_time?: number | undefined;
|
|
28630
|
+
fall_time?: number | undefined;
|
|
28631
|
+
pulse_width?: number | undefined;
|
|
28632
|
+
period?: number | undefined;
|
|
28536
28633
|
manufacturer_part_number?: string | undefined;
|
|
28537
28634
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28538
28635
|
display_value?: string | undefined;
|
|
@@ -28552,6 +28649,11 @@ declare const source_simple_voltage_source: z.ZodObject<{
|
|
|
28552
28649
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
28553
28650
|
phase?: string | number | undefined;
|
|
28554
28651
|
duty_cycle?: number | undefined;
|
|
28652
|
+
pulse_delay?: string | number | undefined;
|
|
28653
|
+
rise_time?: string | number | undefined;
|
|
28654
|
+
fall_time?: string | number | undefined;
|
|
28655
|
+
pulse_width?: string | number | undefined;
|
|
28656
|
+
period?: string | number | undefined;
|
|
28555
28657
|
manufacturer_part_number?: string | undefined;
|
|
28556
28658
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28557
28659
|
display_value?: string | undefined;
|
|
@@ -28571,6 +28673,11 @@ interface SourceSimpleVoltageSource extends SourceComponentBase {
|
|
|
28571
28673
|
wave_shape?: "sinewave" | "square" | "triangle" | "sawtooth";
|
|
28572
28674
|
phase?: number;
|
|
28573
28675
|
duty_cycle?: number;
|
|
28676
|
+
pulse_delay?: number;
|
|
28677
|
+
rise_time?: number;
|
|
28678
|
+
fall_time?: number;
|
|
28679
|
+
pulse_width?: number;
|
|
28680
|
+
period?: number;
|
|
28574
28681
|
}
|
|
28575
28682
|
|
|
28576
28683
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
@@ -29756,6 +29863,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
29756
29863
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
29757
29864
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29758
29865
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
29866
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29867
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29868
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29869
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29870
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29759
29871
|
}, "strip", z.ZodTypeAny, {
|
|
29760
29872
|
type: "source_component";
|
|
29761
29873
|
name: string;
|
|
@@ -29769,6 +29881,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
29769
29881
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
29770
29882
|
phase?: number | undefined;
|
|
29771
29883
|
duty_cycle?: number | undefined;
|
|
29884
|
+
pulse_delay?: number | undefined;
|
|
29885
|
+
rise_time?: number | undefined;
|
|
29886
|
+
fall_time?: number | undefined;
|
|
29887
|
+
pulse_width?: number | undefined;
|
|
29888
|
+
period?: number | undefined;
|
|
29772
29889
|
manufacturer_part_number?: string | undefined;
|
|
29773
29890
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
29774
29891
|
display_value?: string | undefined;
|
|
@@ -29788,6 +29905,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
29788
29905
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
29789
29906
|
phase?: string | number | undefined;
|
|
29790
29907
|
duty_cycle?: number | undefined;
|
|
29908
|
+
pulse_delay?: string | number | undefined;
|
|
29909
|
+
rise_time?: string | number | undefined;
|
|
29910
|
+
fall_time?: string | number | undefined;
|
|
29911
|
+
pulse_width?: string | number | undefined;
|
|
29912
|
+
period?: string | number | undefined;
|
|
29791
29913
|
manufacturer_part_number?: string | undefined;
|
|
29792
29914
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
29793
29915
|
display_value?: string | undefined;
|
|
@@ -34986,6 +35108,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34986
35108
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
34987
35109
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34988
35110
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
35111
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35112
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35113
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35114
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35115
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34989
35116
|
}, "strip", z.ZodTypeAny, {
|
|
34990
35117
|
type: "source_component";
|
|
34991
35118
|
name: string;
|
|
@@ -34999,6 +35126,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34999
35126
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
35000
35127
|
phase?: number | undefined;
|
|
35001
35128
|
duty_cycle?: number | undefined;
|
|
35129
|
+
pulse_delay?: number | undefined;
|
|
35130
|
+
rise_time?: number | undefined;
|
|
35131
|
+
fall_time?: number | undefined;
|
|
35132
|
+
pulse_width?: number | undefined;
|
|
35133
|
+
period?: number | undefined;
|
|
35002
35134
|
manufacturer_part_number?: string | undefined;
|
|
35003
35135
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
35004
35136
|
display_value?: string | undefined;
|
|
@@ -35018,6 +35150,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35018
35150
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
35019
35151
|
phase?: string | number | undefined;
|
|
35020
35152
|
duty_cycle?: number | undefined;
|
|
35153
|
+
pulse_delay?: string | number | undefined;
|
|
35154
|
+
rise_time?: string | number | undefined;
|
|
35155
|
+
fall_time?: string | number | undefined;
|
|
35156
|
+
pulse_width?: string | number | undefined;
|
|
35157
|
+
period?: string | number | undefined;
|
|
35021
35158
|
manufacturer_part_number?: string | undefined;
|
|
35022
35159
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
35023
35160
|
display_value?: string | undefined;
|
|
@@ -38252,9 +38389,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38252
38389
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38253
38390
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38254
38391
|
}, "strip", z.ZodTypeAny, {
|
|
38392
|
+
type: "pcb_hole";
|
|
38255
38393
|
x: number;
|
|
38256
38394
|
y: number;
|
|
38257
|
-
type: "pcb_hole";
|
|
38258
38395
|
pcb_hole_id: string;
|
|
38259
38396
|
hole_shape: "circle" | "square";
|
|
38260
38397
|
hole_diameter: number;
|
|
@@ -38264,9 +38401,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38264
38401
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38265
38402
|
soldermask_margin?: number | undefined;
|
|
38266
38403
|
}, {
|
|
38404
|
+
type: "pcb_hole";
|
|
38267
38405
|
x: string | number;
|
|
38268
38406
|
y: string | number;
|
|
38269
|
-
type: "pcb_hole";
|
|
38270
38407
|
hole_shape: "circle" | "square";
|
|
38271
38408
|
hole_diameter: number;
|
|
38272
38409
|
pcb_component_id?: string | undefined;
|
|
@@ -38289,9 +38426,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38289
38426
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38290
38427
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38291
38428
|
}, "strip", z.ZodTypeAny, {
|
|
38429
|
+
type: "pcb_hole";
|
|
38292
38430
|
x: number;
|
|
38293
38431
|
y: number;
|
|
38294
|
-
type: "pcb_hole";
|
|
38295
38432
|
pcb_hole_id: string;
|
|
38296
38433
|
hole_shape: "oval";
|
|
38297
38434
|
hole_width: number;
|
|
@@ -38302,9 +38439,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38302
38439
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38303
38440
|
soldermask_margin?: number | undefined;
|
|
38304
38441
|
}, {
|
|
38442
|
+
type: "pcb_hole";
|
|
38305
38443
|
x: string | number;
|
|
38306
38444
|
y: string | number;
|
|
38307
|
-
type: "pcb_hole";
|
|
38308
38445
|
hole_shape: "oval";
|
|
38309
38446
|
hole_width: number;
|
|
38310
38447
|
hole_height: number;
|
|
@@ -38328,9 +38465,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38328
38465
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38329
38466
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38330
38467
|
}, "strip", z.ZodTypeAny, {
|
|
38468
|
+
type: "pcb_hole";
|
|
38331
38469
|
x: number;
|
|
38332
38470
|
y: number;
|
|
38333
|
-
type: "pcb_hole";
|
|
38334
38471
|
pcb_hole_id: string;
|
|
38335
38472
|
hole_shape: "pill";
|
|
38336
38473
|
hole_width: number;
|
|
@@ -38341,9 +38478,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38341
38478
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38342
38479
|
soldermask_margin?: number | undefined;
|
|
38343
38480
|
}, {
|
|
38481
|
+
type: "pcb_hole";
|
|
38344
38482
|
x: string | number;
|
|
38345
38483
|
y: string | number;
|
|
38346
|
-
type: "pcb_hole";
|
|
38347
38484
|
hole_shape: "pill";
|
|
38348
38485
|
hole_width: number;
|
|
38349
38486
|
hole_height: number;
|
|
@@ -38368,9 +38505,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38368
38505
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38369
38506
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38370
38507
|
}, "strip", z.ZodTypeAny, {
|
|
38508
|
+
type: "pcb_hole";
|
|
38371
38509
|
x: number;
|
|
38372
38510
|
y: number;
|
|
38373
|
-
type: "pcb_hole";
|
|
38374
38511
|
pcb_hole_id: string;
|
|
38375
38512
|
hole_shape: "rotated_pill";
|
|
38376
38513
|
hole_width: number;
|
|
@@ -38382,9 +38519,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38382
38519
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38383
38520
|
soldermask_margin?: number | undefined;
|
|
38384
38521
|
}, {
|
|
38522
|
+
type: "pcb_hole";
|
|
38385
38523
|
x: string | number;
|
|
38386
38524
|
y: string | number;
|
|
38387
|
-
type: "pcb_hole";
|
|
38388
38525
|
hole_shape: "rotated_pill";
|
|
38389
38526
|
hole_width: number;
|
|
38390
38527
|
hole_height: number;
|
|
@@ -38408,9 +38545,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38408
38545
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38409
38546
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38410
38547
|
}, "strip", z.ZodTypeAny, {
|
|
38548
|
+
type: "pcb_hole";
|
|
38411
38549
|
x: number;
|
|
38412
38550
|
y: number;
|
|
38413
|
-
type: "pcb_hole";
|
|
38414
38551
|
pcb_hole_id: string;
|
|
38415
38552
|
hole_shape: "circle";
|
|
38416
38553
|
hole_diameter: number;
|
|
@@ -38420,9 +38557,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38420
38557
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38421
38558
|
soldermask_margin?: number | undefined;
|
|
38422
38559
|
}, {
|
|
38560
|
+
type: "pcb_hole";
|
|
38423
38561
|
x: string | number;
|
|
38424
38562
|
y: string | number;
|
|
38425
|
-
type: "pcb_hole";
|
|
38426
38563
|
hole_shape: "circle";
|
|
38427
38564
|
hole_diameter: number;
|
|
38428
38565
|
pcb_component_id?: string | undefined;
|
|
@@ -38445,9 +38582,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38445
38582
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38446
38583
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38447
38584
|
}, "strip", z.ZodTypeAny, {
|
|
38585
|
+
type: "pcb_hole";
|
|
38448
38586
|
x: number;
|
|
38449
38587
|
y: number;
|
|
38450
|
-
type: "pcb_hole";
|
|
38451
38588
|
pcb_hole_id: string;
|
|
38452
38589
|
hole_shape: "rect";
|
|
38453
38590
|
hole_width: number;
|
|
@@ -38458,9 +38595,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38458
38595
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38459
38596
|
soldermask_margin?: number | undefined;
|
|
38460
38597
|
}, {
|
|
38598
|
+
type: "pcb_hole";
|
|
38461
38599
|
x: string | number;
|
|
38462
38600
|
y: string | number;
|
|
38463
|
-
type: "pcb_hole";
|
|
38464
38601
|
hole_shape: "rect";
|
|
38465
38602
|
hole_width: number;
|
|
38466
38603
|
hole_height: number;
|
|
@@ -38690,9 +38827,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38690
38827
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38691
38828
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38692
38829
|
}, "strip", z.ZodTypeAny, {
|
|
38830
|
+
type: "pcb_plated_hole";
|
|
38693
38831
|
x: number;
|
|
38694
38832
|
y: number;
|
|
38695
|
-
type: "pcb_plated_hole";
|
|
38696
38833
|
shape: "circle";
|
|
38697
38834
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38698
38835
|
hole_diameter: number;
|
|
@@ -38706,9 +38843,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38706
38843
|
port_hints?: string[] | undefined;
|
|
38707
38844
|
pcb_port_id?: string | undefined;
|
|
38708
38845
|
}, {
|
|
38846
|
+
type: "pcb_plated_hole";
|
|
38709
38847
|
x: string | number;
|
|
38710
38848
|
y: string | number;
|
|
38711
|
-
type: "pcb_plated_hole";
|
|
38712
38849
|
shape: "circle";
|
|
38713
38850
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38714
38851
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38751,9 +38888,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38751
38888
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38752
38889
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38753
38890
|
}, "strip", z.ZodTypeAny, {
|
|
38891
|
+
type: "pcb_plated_hole";
|
|
38754
38892
|
x: number;
|
|
38755
38893
|
y: number;
|
|
38756
|
-
type: "pcb_plated_hole";
|
|
38757
38894
|
shape: "oval" | "pill";
|
|
38758
38895
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38759
38896
|
hole_width: number;
|
|
@@ -38770,9 +38907,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38770
38907
|
port_hints?: string[] | undefined;
|
|
38771
38908
|
pcb_port_id?: string | undefined;
|
|
38772
38909
|
}, {
|
|
38910
|
+
type: "pcb_plated_hole";
|
|
38773
38911
|
x: string | number;
|
|
38774
38912
|
y: string | number;
|
|
38775
|
-
type: "pcb_plated_hole";
|
|
38776
38913
|
shape: "oval" | "pill";
|
|
38777
38914
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38778
38915
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38822,9 +38959,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38822
38959
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38823
38960
|
rect_ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
38824
38961
|
}, "strip", z.ZodTypeAny, {
|
|
38962
|
+
type: "pcb_plated_hole";
|
|
38825
38963
|
x: number;
|
|
38826
38964
|
y: number;
|
|
38827
|
-
type: "pcb_plated_hole";
|
|
38828
38965
|
shape: "circular_hole_with_rect_pad";
|
|
38829
38966
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38830
38967
|
hole_shape: "circle";
|
|
@@ -38845,9 +38982,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38845
38982
|
rect_border_radius?: number | undefined;
|
|
38846
38983
|
rect_ccw_rotation?: number | undefined;
|
|
38847
38984
|
}, {
|
|
38985
|
+
type: "pcb_plated_hole";
|
|
38848
38986
|
x: string | number;
|
|
38849
38987
|
y: string | number;
|
|
38850
|
-
type: "pcb_plated_hole";
|
|
38851
38988
|
shape: "circular_hole_with_rect_pad";
|
|
38852
38989
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38853
38990
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38901,9 +39038,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38901
39038
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38902
39039
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38903
39040
|
}, "strip", z.ZodTypeAny, {
|
|
39041
|
+
type: "pcb_plated_hole";
|
|
38904
39042
|
x: number;
|
|
38905
39043
|
y: number;
|
|
38906
|
-
type: "pcb_plated_hole";
|
|
38907
39044
|
shape: "pill_hole_with_rect_pad";
|
|
38908
39045
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38909
39046
|
hole_shape: "pill";
|
|
@@ -38924,9 +39061,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38924
39061
|
pcb_port_id?: string | undefined;
|
|
38925
39062
|
rect_border_radius?: number | undefined;
|
|
38926
39063
|
}, {
|
|
39064
|
+
type: "pcb_plated_hole";
|
|
38927
39065
|
x: string | number;
|
|
38928
39066
|
y: string | number;
|
|
38929
|
-
type: "pcb_plated_hole";
|
|
38930
39067
|
shape: "pill_hole_with_rect_pad";
|
|
38931
39068
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38932
39069
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38982,9 +39119,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38982
39119
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38983
39120
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38984
39121
|
}, "strip", z.ZodTypeAny, {
|
|
39122
|
+
type: "pcb_plated_hole";
|
|
38985
39123
|
x: number;
|
|
38986
39124
|
y: number;
|
|
38987
|
-
type: "pcb_plated_hole";
|
|
38988
39125
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
38989
39126
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38990
39127
|
hole_shape: "rotated_pill";
|
|
@@ -39007,9 +39144,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39007
39144
|
pcb_port_id?: string | undefined;
|
|
39008
39145
|
rect_border_radius?: number | undefined;
|
|
39009
39146
|
}, {
|
|
39147
|
+
type: "pcb_plated_hole";
|
|
39010
39148
|
x: string | number;
|
|
39011
39149
|
y: string | number;
|
|
39012
|
-
type: "pcb_plated_hole";
|
|
39013
39150
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
39014
39151
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39015
39152
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39073,9 +39210,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39073
39210
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
39074
39211
|
ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
39075
39212
|
}, "strip", z.ZodTypeAny, {
|
|
39213
|
+
type: "pcb_plated_hole";
|
|
39076
39214
|
x: number;
|
|
39077
39215
|
y: number;
|
|
39078
|
-
type: "pcb_plated_hole";
|
|
39079
39216
|
shape: "hole_with_polygon_pad";
|
|
39080
39217
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
39081
39218
|
hole_shape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
@@ -39098,9 +39235,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39098
39235
|
port_hints?: string[] | undefined;
|
|
39099
39236
|
pcb_port_id?: string | undefined;
|
|
39100
39237
|
}, {
|
|
39238
|
+
type: "pcb_plated_hole";
|
|
39101
39239
|
x: string | number;
|
|
39102
39240
|
y: string | number;
|
|
39103
|
-
type: "pcb_plated_hole";
|
|
39104
39241
|
shape: "hole_with_polygon_pad";
|
|
39105
39242
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39106
39243
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39237,9 +39374,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39237
39374
|
}>, "many">;
|
|
39238
39375
|
is_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
39239
39376
|
}, "strip", z.ZodTypeAny, {
|
|
39377
|
+
type: "pcb_port";
|
|
39240
39378
|
x: number;
|
|
39241
39379
|
y: number;
|
|
39242
|
-
type: "pcb_port";
|
|
39243
39380
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
39244
39381
|
pcb_port_id: string;
|
|
39245
39382
|
source_port_id: string;
|
|
@@ -39248,9 +39385,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39248
39385
|
pcb_group_id?: string | undefined;
|
|
39249
39386
|
is_board_pinout?: boolean | undefined;
|
|
39250
39387
|
}, {
|
|
39388
|
+
type: "pcb_port";
|
|
39251
39389
|
x: string | number;
|
|
39252
39390
|
y: string | number;
|
|
39253
|
-
type: "pcb_port";
|
|
39254
39391
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39255
39392
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39256
39393
|
})[];
|
|
@@ -39712,9 +39849,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39712
39849
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
39713
39850
|
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
39714
39851
|
}, "strip", z.ZodTypeAny, {
|
|
39852
|
+
type: "pcb_via";
|
|
39715
39853
|
x: number;
|
|
39716
39854
|
y: number;
|
|
39717
|
-
type: "pcb_via";
|
|
39718
39855
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
39719
39856
|
hole_diameter: number;
|
|
39720
39857
|
outer_diameter: number;
|
|
@@ -39729,9 +39866,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39729
39866
|
net_assigned?: boolean | undefined;
|
|
39730
39867
|
is_tented?: boolean | undefined;
|
|
39731
39868
|
}, {
|
|
39869
|
+
type: "pcb_via";
|
|
39732
39870
|
x: string | number;
|
|
39733
39871
|
y: string | number;
|
|
39734
|
-
type: "pcb_via";
|
|
39735
39872
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39736
39873
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39737
39874
|
})[];
|
|
@@ -39775,9 +39912,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39775
39912
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
39776
39913
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
39777
39914
|
}, "strip", z.ZodTypeAny, {
|
|
39915
|
+
type: "pcb_smtpad";
|
|
39778
39916
|
x: number;
|
|
39779
39917
|
y: number;
|
|
39780
|
-
type: "pcb_smtpad";
|
|
39781
39918
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39782
39919
|
shape: "circle";
|
|
39783
39920
|
pcb_smtpad_id: string;
|
|
@@ -39790,9 +39927,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39790
39927
|
port_hints?: string[] | undefined;
|
|
39791
39928
|
pcb_port_id?: string | undefined;
|
|
39792
39929
|
}, {
|
|
39930
|
+
type: "pcb_smtpad";
|
|
39793
39931
|
x: string | number;
|
|
39794
39932
|
y: string | number;
|
|
39795
|
-
type: "pcb_smtpad";
|
|
39796
39933
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39797
39934
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39798
39935
|
};
|
|
@@ -39837,9 +39974,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39837
39974
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
39838
39975
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
39839
39976
|
}, "strip", z.ZodTypeAny, {
|
|
39977
|
+
type: "pcb_smtpad";
|
|
39840
39978
|
x: number;
|
|
39841
39979
|
y: number;
|
|
39842
|
-
type: "pcb_smtpad";
|
|
39843
39980
|
width: number;
|
|
39844
39981
|
height: number;
|
|
39845
39982
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39859,9 +39996,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39859
39996
|
soldermask_margin_right?: number | undefined;
|
|
39860
39997
|
soldermask_margin_bottom?: number | undefined;
|
|
39861
39998
|
}, {
|
|
39999
|
+
type: "pcb_smtpad";
|
|
39862
40000
|
x: string | number;
|
|
39863
40001
|
y: string | number;
|
|
39864
|
-
type: "pcb_smtpad";
|
|
39865
40002
|
width: number;
|
|
39866
40003
|
height: number;
|
|
39867
40004
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -39914,9 +40051,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39914
40051
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
39915
40052
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
39916
40053
|
}, "strip", z.ZodTypeAny, {
|
|
40054
|
+
type: "pcb_smtpad";
|
|
39917
40055
|
x: number;
|
|
39918
40056
|
y: number;
|
|
39919
|
-
type: "pcb_smtpad";
|
|
39920
40057
|
width: number;
|
|
39921
40058
|
height: number;
|
|
39922
40059
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39937,9 +40074,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39937
40074
|
soldermask_margin_right?: number | undefined;
|
|
39938
40075
|
soldermask_margin_bottom?: number | undefined;
|
|
39939
40076
|
}, {
|
|
40077
|
+
type: "pcb_smtpad";
|
|
39940
40078
|
x: string | number;
|
|
39941
40079
|
y: string | number;
|
|
39942
|
-
type: "pcb_smtpad";
|
|
39943
40080
|
width: number;
|
|
39944
40081
|
height: number;
|
|
39945
40082
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -39988,9 +40125,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39988
40125
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
39989
40126
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
39990
40127
|
}, "strip", z.ZodTypeAny, {
|
|
40128
|
+
type: "pcb_smtpad";
|
|
39991
40129
|
x: number;
|
|
39992
40130
|
y: number;
|
|
39993
|
-
type: "pcb_smtpad";
|
|
39994
40131
|
width: number;
|
|
39995
40132
|
height: number;
|
|
39996
40133
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40006,9 +40143,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40006
40143
|
port_hints?: string[] | undefined;
|
|
40007
40144
|
pcb_port_id?: string | undefined;
|
|
40008
40145
|
}, {
|
|
40146
|
+
type: "pcb_smtpad";
|
|
40009
40147
|
x: string | number;
|
|
40010
40148
|
y: string | number;
|
|
40011
|
-
type: "pcb_smtpad";
|
|
40012
40149
|
width: number;
|
|
40013
40150
|
height: number;
|
|
40014
40151
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40051,9 +40188,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40051
40188
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
40052
40189
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
40053
40190
|
}, "strip", z.ZodTypeAny, {
|
|
40191
|
+
type: "pcb_smtpad";
|
|
40054
40192
|
x: number;
|
|
40055
40193
|
y: number;
|
|
40056
|
-
type: "pcb_smtpad";
|
|
40057
40194
|
width: number;
|
|
40058
40195
|
height: number;
|
|
40059
40196
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40068,9 +40205,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40068
40205
|
port_hints?: string[] | undefined;
|
|
40069
40206
|
pcb_port_id?: string | undefined;
|
|
40070
40207
|
}, {
|
|
40208
|
+
type: "pcb_smtpad";
|
|
40071
40209
|
x: string | number;
|
|
40072
40210
|
y: string | number;
|
|
40073
|
-
type: "pcb_smtpad";
|
|
40074
40211
|
width: number;
|
|
40075
40212
|
height: number;
|
|
40076
40213
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40171,9 +40308,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40171
40308
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40172
40309
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40173
40310
|
}, "strip", z.ZodTypeAny, {
|
|
40311
|
+
type: "pcb_solder_paste";
|
|
40174
40312
|
x: number;
|
|
40175
40313
|
y: number;
|
|
40176
|
-
type: "pcb_solder_paste";
|
|
40177
40314
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40178
40315
|
shape: "circle";
|
|
40179
40316
|
radius: number;
|
|
@@ -40183,9 +40320,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40183
40320
|
pcb_group_id?: string | undefined;
|
|
40184
40321
|
pcb_smtpad_id?: string | undefined;
|
|
40185
40322
|
}, {
|
|
40323
|
+
type: "pcb_solder_paste";
|
|
40186
40324
|
x: string | number;
|
|
40187
40325
|
y: string | number;
|
|
40188
|
-
type: "pcb_solder_paste";
|
|
40189
40326
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
40190
40327
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40191
40328
|
};
|
|
@@ -40218,9 +40355,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40218
40355
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40219
40356
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40220
40357
|
}, "strip", z.ZodTypeAny, {
|
|
40358
|
+
type: "pcb_solder_paste";
|
|
40221
40359
|
x: number;
|
|
40222
40360
|
y: number;
|
|
40223
|
-
type: "pcb_solder_paste";
|
|
40224
40361
|
width: number;
|
|
40225
40362
|
height: number;
|
|
40226
40363
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40231,9 +40368,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40231
40368
|
pcb_group_id?: string | undefined;
|
|
40232
40369
|
pcb_smtpad_id?: string | undefined;
|
|
40233
40370
|
}, {
|
|
40371
|
+
type: "pcb_solder_paste";
|
|
40234
40372
|
x: string | number;
|
|
40235
40373
|
y: string | number;
|
|
40236
|
-
type: "pcb_solder_paste";
|
|
40237
40374
|
width: number;
|
|
40238
40375
|
height: number;
|
|
40239
40376
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40268,9 +40405,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40268
40405
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40269
40406
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40270
40407
|
}, "strip", z.ZodTypeAny, {
|
|
40408
|
+
type: "pcb_solder_paste";
|
|
40271
40409
|
x: number;
|
|
40272
40410
|
y: number;
|
|
40273
|
-
type: "pcb_solder_paste";
|
|
40274
40411
|
width: number;
|
|
40275
40412
|
height: number;
|
|
40276
40413
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40282,9 +40419,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40282
40419
|
pcb_group_id?: string | undefined;
|
|
40283
40420
|
pcb_smtpad_id?: string | undefined;
|
|
40284
40421
|
}, {
|
|
40422
|
+
type: "pcb_solder_paste";
|
|
40285
40423
|
x: string | number;
|
|
40286
40424
|
y: string | number;
|
|
40287
|
-
type: "pcb_solder_paste";
|
|
40288
40425
|
width: number;
|
|
40289
40426
|
height: number;
|
|
40290
40427
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40320,9 +40457,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40320
40457
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40321
40458
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40322
40459
|
}, "strip", z.ZodTypeAny, {
|
|
40460
|
+
type: "pcb_solder_paste";
|
|
40323
40461
|
x: number;
|
|
40324
40462
|
y: number;
|
|
40325
|
-
type: "pcb_solder_paste";
|
|
40326
40463
|
width: number;
|
|
40327
40464
|
height: number;
|
|
40328
40465
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40334,9 +40471,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40334
40471
|
pcb_group_id?: string | undefined;
|
|
40335
40472
|
pcb_smtpad_id?: string | undefined;
|
|
40336
40473
|
}, {
|
|
40474
|
+
type: "pcb_solder_paste";
|
|
40337
40475
|
x: string | number;
|
|
40338
40476
|
y: string | number;
|
|
40339
|
-
type: "pcb_solder_paste";
|
|
40340
40477
|
width: number;
|
|
40341
40478
|
height: number;
|
|
40342
40479
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40371,9 +40508,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40371
40508
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40372
40509
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40373
40510
|
}, "strip", z.ZodTypeAny, {
|
|
40511
|
+
type: "pcb_solder_paste";
|
|
40374
40512
|
x: number;
|
|
40375
40513
|
y: number;
|
|
40376
|
-
type: "pcb_solder_paste";
|
|
40377
40514
|
width: number;
|
|
40378
40515
|
height: number;
|
|
40379
40516
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40384,9 +40521,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40384
40521
|
pcb_group_id?: string | undefined;
|
|
40385
40522
|
pcb_smtpad_id?: string | undefined;
|
|
40386
40523
|
}, {
|
|
40524
|
+
type: "pcb_solder_paste";
|
|
40387
40525
|
x: string | number;
|
|
40388
40526
|
y: string | number;
|
|
40389
|
-
type: "pcb_solder_paste";
|
|
40390
40527
|
width: number;
|
|
40391
40528
|
height: number;
|
|
40392
40529
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -42532,9 +42669,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
42532
42669
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
42533
42670
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
42534
42671
|
}, "strip", z.ZodTypeAny, {
|
|
42672
|
+
type: "pcb_breakout_point";
|
|
42535
42673
|
x: number;
|
|
42536
42674
|
y: number;
|
|
42537
|
-
type: "pcb_breakout_point";
|
|
42538
42675
|
pcb_group_id: string;
|
|
42539
42676
|
pcb_breakout_point_id: string;
|
|
42540
42677
|
subcircuit_id?: string | undefined;
|
|
@@ -42542,9 +42679,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
42542
42679
|
source_trace_id?: string | undefined;
|
|
42543
42680
|
source_net_id?: string | undefined;
|
|
42544
42681
|
}, {
|
|
42682
|
+
type: "pcb_breakout_point";
|
|
42545
42683
|
x: string | number;
|
|
42546
42684
|
y: string | number;
|
|
42547
|
-
type: "pcb_breakout_point";
|
|
42548
42685
|
pcb_group_id: string;
|
|
42549
42686
|
subcircuit_id?: string | undefined;
|
|
42550
42687
|
source_port_id?: string | undefined;
|
|
@@ -43539,9 +43676,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
43539
43676
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43540
43677
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
43541
43678
|
}, "strip", z.ZodTypeAny, {
|
|
43679
|
+
type: "schematic_box";
|
|
43542
43680
|
x: number;
|
|
43543
43681
|
y: number;
|
|
43544
|
-
type: "schematic_box";
|
|
43545
43682
|
width: number;
|
|
43546
43683
|
height: number;
|
|
43547
43684
|
is_dashed: boolean;
|
|
@@ -43549,9 +43686,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
43549
43686
|
schematic_component_id?: string | undefined;
|
|
43550
43687
|
schematic_symbol_id?: string | undefined;
|
|
43551
43688
|
}, {
|
|
43689
|
+
type: "schematic_box";
|
|
43552
43690
|
x: string | number;
|
|
43553
43691
|
y: string | number;
|
|
43554
|
-
type: "schematic_box";
|
|
43555
43692
|
width: string | number;
|
|
43556
43693
|
height: string | number;
|
|
43557
43694
|
subcircuit_id?: string | undefined;
|
|
@@ -51852,6 +51989,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51852
51989
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
51853
51990
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51854
51991
|
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
51992
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51993
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51994
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51995
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51996
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51855
51997
|
}, "strip", z.ZodTypeAny, {
|
|
51856
51998
|
type: "simulation_voltage_source";
|
|
51857
51999
|
simulation_voltage_source_id: string;
|
|
@@ -51866,6 +52008,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51866
52008
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
51867
52009
|
phase?: number | undefined;
|
|
51868
52010
|
duty_cycle?: number | undefined;
|
|
52011
|
+
pulse_delay?: number | undefined;
|
|
52012
|
+
rise_time?: number | undefined;
|
|
52013
|
+
fall_time?: number | undefined;
|
|
52014
|
+
pulse_width?: number | undefined;
|
|
52015
|
+
period?: number | undefined;
|
|
51869
52016
|
}, {
|
|
51870
52017
|
type: "simulation_voltage_source";
|
|
51871
52018
|
is_dc_source: false;
|
|
@@ -51880,6 +52027,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51880
52027
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
51881
52028
|
phase?: string | number | undefined;
|
|
51882
52029
|
duty_cycle?: string | number | undefined;
|
|
52030
|
+
pulse_delay?: string | number | undefined;
|
|
52031
|
+
rise_time?: string | number | undefined;
|
|
52032
|
+
fall_time?: string | number | undefined;
|
|
52033
|
+
pulse_width?: string | number | undefined;
|
|
52034
|
+
period?: string | number | undefined;
|
|
51883
52035
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
51884
52036
|
type: z.ZodLiteral<"simulation_current_source">;
|
|
51885
52037
|
simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -51957,6 +52109,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51957
52109
|
time_per_step: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51958
52110
|
start_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51959
52111
|
end_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
52112
|
+
spice_options: z.ZodOptional<z.ZodObject<{
|
|
52113
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
52114
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
52115
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
52116
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
52117
|
+
}, "strip", z.ZodTypeAny, {
|
|
52118
|
+
method?: "trap" | "gear" | undefined;
|
|
52119
|
+
reltol?: string | number | undefined;
|
|
52120
|
+
abstol?: string | number | undefined;
|
|
52121
|
+
vntol?: string | number | undefined;
|
|
52122
|
+
}, {
|
|
52123
|
+
method?: "trap" | "gear" | undefined;
|
|
52124
|
+
reltol?: string | number | undefined;
|
|
52125
|
+
abstol?: string | number | undefined;
|
|
52126
|
+
vntol?: string | number | undefined;
|
|
52127
|
+
}>>;
|
|
51960
52128
|
}, "strip", z.ZodTypeAny, {
|
|
51961
52129
|
type: "simulation_experiment";
|
|
51962
52130
|
name: string;
|
|
@@ -51965,6 +52133,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51965
52133
|
time_per_step?: number | undefined;
|
|
51966
52134
|
start_time_ms?: number | undefined;
|
|
51967
52135
|
end_time_ms?: number | undefined;
|
|
52136
|
+
spice_options?: {
|
|
52137
|
+
method?: "trap" | "gear" | undefined;
|
|
52138
|
+
reltol?: string | number | undefined;
|
|
52139
|
+
abstol?: string | number | undefined;
|
|
52140
|
+
vntol?: string | number | undefined;
|
|
52141
|
+
} | undefined;
|
|
51968
52142
|
}, {
|
|
51969
52143
|
type: "simulation_experiment";
|
|
51970
52144
|
name: string;
|
|
@@ -51973,6 +52147,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51973
52147
|
time_per_step?: string | number | undefined;
|
|
51974
52148
|
start_time_ms?: string | number | undefined;
|
|
51975
52149
|
end_time_ms?: string | number | undefined;
|
|
52150
|
+
spice_options?: {
|
|
52151
|
+
method?: "trap" | "gear" | undefined;
|
|
52152
|
+
reltol?: string | number | undefined;
|
|
52153
|
+
abstol?: string | number | undefined;
|
|
52154
|
+
vntol?: string | number | undefined;
|
|
52155
|
+
} | undefined;
|
|
51976
52156
|
}>, z.ZodObject<{
|
|
51977
52157
|
type: z.ZodLiteral<"simulation_transient_voltage_graph">;
|
|
51978
52158
|
simulation_transient_voltage_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -53541,6 +53721,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53541
53721
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
53542
53722
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53543
53723
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
53724
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53725
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53726
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53727
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53728
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53544
53729
|
}, "strip", z.ZodTypeAny, {
|
|
53545
53730
|
type: "source_component";
|
|
53546
53731
|
name: string;
|
|
@@ -53554,6 +53739,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53554
53739
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
53555
53740
|
phase?: number | undefined;
|
|
53556
53741
|
duty_cycle?: number | undefined;
|
|
53742
|
+
pulse_delay?: number | undefined;
|
|
53743
|
+
rise_time?: number | undefined;
|
|
53744
|
+
fall_time?: number | undefined;
|
|
53745
|
+
pulse_width?: number | undefined;
|
|
53746
|
+
period?: number | undefined;
|
|
53557
53747
|
manufacturer_part_number?: string | undefined;
|
|
53558
53748
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53559
53749
|
display_value?: string | undefined;
|
|
@@ -53573,6 +53763,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53573
53763
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
53574
53764
|
phase?: string | number | undefined;
|
|
53575
53765
|
duty_cycle?: number | undefined;
|
|
53766
|
+
pulse_delay?: string | number | undefined;
|
|
53767
|
+
rise_time?: string | number | undefined;
|
|
53768
|
+
fall_time?: string | number | undefined;
|
|
53769
|
+
pulse_width?: string | number | undefined;
|
|
53770
|
+
period?: string | number | undefined;
|
|
53576
53771
|
manufacturer_part_number?: string | undefined;
|
|
53577
53772
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53578
53773
|
display_value?: string | undefined;
|
|
@@ -56807,9 +57002,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56807
57002
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56808
57003
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56809
57004
|
}, "strip", z.ZodTypeAny, {
|
|
57005
|
+
type: "pcb_hole";
|
|
56810
57006
|
x: number;
|
|
56811
57007
|
y: number;
|
|
56812
|
-
type: "pcb_hole";
|
|
56813
57008
|
pcb_hole_id: string;
|
|
56814
57009
|
hole_shape: "circle" | "square";
|
|
56815
57010
|
hole_diameter: number;
|
|
@@ -56819,9 +57014,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56819
57014
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56820
57015
|
soldermask_margin?: number | undefined;
|
|
56821
57016
|
}, {
|
|
57017
|
+
type: "pcb_hole";
|
|
56822
57018
|
x: string | number;
|
|
56823
57019
|
y: string | number;
|
|
56824
|
-
type: "pcb_hole";
|
|
56825
57020
|
hole_shape: "circle" | "square";
|
|
56826
57021
|
hole_diameter: number;
|
|
56827
57022
|
pcb_component_id?: string | undefined;
|
|
@@ -56844,9 +57039,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56844
57039
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56845
57040
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56846
57041
|
}, "strip", z.ZodTypeAny, {
|
|
57042
|
+
type: "pcb_hole";
|
|
56847
57043
|
x: number;
|
|
56848
57044
|
y: number;
|
|
56849
|
-
type: "pcb_hole";
|
|
56850
57045
|
pcb_hole_id: string;
|
|
56851
57046
|
hole_shape: "oval";
|
|
56852
57047
|
hole_width: number;
|
|
@@ -56857,9 +57052,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56857
57052
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56858
57053
|
soldermask_margin?: number | undefined;
|
|
56859
57054
|
}, {
|
|
57055
|
+
type: "pcb_hole";
|
|
56860
57056
|
x: string | number;
|
|
56861
57057
|
y: string | number;
|
|
56862
|
-
type: "pcb_hole";
|
|
56863
57058
|
hole_shape: "oval";
|
|
56864
57059
|
hole_width: number;
|
|
56865
57060
|
hole_height: number;
|
|
@@ -56883,9 +57078,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56883
57078
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56884
57079
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56885
57080
|
}, "strip", z.ZodTypeAny, {
|
|
57081
|
+
type: "pcb_hole";
|
|
56886
57082
|
x: number;
|
|
56887
57083
|
y: number;
|
|
56888
|
-
type: "pcb_hole";
|
|
56889
57084
|
pcb_hole_id: string;
|
|
56890
57085
|
hole_shape: "pill";
|
|
56891
57086
|
hole_width: number;
|
|
@@ -56896,9 +57091,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56896
57091
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56897
57092
|
soldermask_margin?: number | undefined;
|
|
56898
57093
|
}, {
|
|
57094
|
+
type: "pcb_hole";
|
|
56899
57095
|
x: string | number;
|
|
56900
57096
|
y: string | number;
|
|
56901
|
-
type: "pcb_hole";
|
|
56902
57097
|
hole_shape: "pill";
|
|
56903
57098
|
hole_width: number;
|
|
56904
57099
|
hole_height: number;
|
|
@@ -56923,9 +57118,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56923
57118
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56924
57119
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56925
57120
|
}, "strip", z.ZodTypeAny, {
|
|
57121
|
+
type: "pcb_hole";
|
|
56926
57122
|
x: number;
|
|
56927
57123
|
y: number;
|
|
56928
|
-
type: "pcb_hole";
|
|
56929
57124
|
pcb_hole_id: string;
|
|
56930
57125
|
hole_shape: "rotated_pill";
|
|
56931
57126
|
hole_width: number;
|
|
@@ -56937,9 +57132,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56937
57132
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56938
57133
|
soldermask_margin?: number | undefined;
|
|
56939
57134
|
}, {
|
|
57135
|
+
type: "pcb_hole";
|
|
56940
57136
|
x: string | number;
|
|
56941
57137
|
y: string | number;
|
|
56942
|
-
type: "pcb_hole";
|
|
56943
57138
|
hole_shape: "rotated_pill";
|
|
56944
57139
|
hole_width: number;
|
|
56945
57140
|
hole_height: number;
|
|
@@ -56963,9 +57158,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56963
57158
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56964
57159
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56965
57160
|
}, "strip", z.ZodTypeAny, {
|
|
57161
|
+
type: "pcb_hole";
|
|
56966
57162
|
x: number;
|
|
56967
57163
|
y: number;
|
|
56968
|
-
type: "pcb_hole";
|
|
56969
57164
|
pcb_hole_id: string;
|
|
56970
57165
|
hole_shape: "circle";
|
|
56971
57166
|
hole_diameter: number;
|
|
@@ -56975,9 +57170,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56975
57170
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56976
57171
|
soldermask_margin?: number | undefined;
|
|
56977
57172
|
}, {
|
|
57173
|
+
type: "pcb_hole";
|
|
56978
57174
|
x: string | number;
|
|
56979
57175
|
y: string | number;
|
|
56980
|
-
type: "pcb_hole";
|
|
56981
57176
|
hole_shape: "circle";
|
|
56982
57177
|
hole_diameter: number;
|
|
56983
57178
|
pcb_component_id?: string | undefined;
|
|
@@ -57000,9 +57195,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57000
57195
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
57001
57196
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57002
57197
|
}, "strip", z.ZodTypeAny, {
|
|
57198
|
+
type: "pcb_hole";
|
|
57003
57199
|
x: number;
|
|
57004
57200
|
y: number;
|
|
57005
|
-
type: "pcb_hole";
|
|
57006
57201
|
pcb_hole_id: string;
|
|
57007
57202
|
hole_shape: "rect";
|
|
57008
57203
|
hole_width: number;
|
|
@@ -57013,9 +57208,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57013
57208
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
57014
57209
|
soldermask_margin?: number | undefined;
|
|
57015
57210
|
}, {
|
|
57211
|
+
type: "pcb_hole";
|
|
57016
57212
|
x: string | number;
|
|
57017
57213
|
y: string | number;
|
|
57018
|
-
type: "pcb_hole";
|
|
57019
57214
|
hole_shape: "rect";
|
|
57020
57215
|
hole_width: number;
|
|
57021
57216
|
hole_height: number;
|
|
@@ -57245,9 +57440,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57245
57440
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57246
57441
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57247
57442
|
}, "strip", z.ZodTypeAny, {
|
|
57443
|
+
type: "pcb_plated_hole";
|
|
57248
57444
|
x: number;
|
|
57249
57445
|
y: number;
|
|
57250
|
-
type: "pcb_plated_hole";
|
|
57251
57446
|
shape: "circle";
|
|
57252
57447
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57253
57448
|
hole_diameter: number;
|
|
@@ -57261,9 +57456,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57261
57456
|
port_hints?: string[] | undefined;
|
|
57262
57457
|
pcb_port_id?: string | undefined;
|
|
57263
57458
|
}, {
|
|
57459
|
+
type: "pcb_plated_hole";
|
|
57264
57460
|
x: string | number;
|
|
57265
57461
|
y: string | number;
|
|
57266
|
-
type: "pcb_plated_hole";
|
|
57267
57462
|
shape: "circle";
|
|
57268
57463
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57269
57464
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57306,9 +57501,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57306
57501
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57307
57502
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57308
57503
|
}, "strip", z.ZodTypeAny, {
|
|
57504
|
+
type: "pcb_plated_hole";
|
|
57309
57505
|
x: number;
|
|
57310
57506
|
y: number;
|
|
57311
|
-
type: "pcb_plated_hole";
|
|
57312
57507
|
shape: "oval" | "pill";
|
|
57313
57508
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57314
57509
|
hole_width: number;
|
|
@@ -57325,9 +57520,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57325
57520
|
port_hints?: string[] | undefined;
|
|
57326
57521
|
pcb_port_id?: string | undefined;
|
|
57327
57522
|
}, {
|
|
57523
|
+
type: "pcb_plated_hole";
|
|
57328
57524
|
x: string | number;
|
|
57329
57525
|
y: string | number;
|
|
57330
|
-
type: "pcb_plated_hole";
|
|
57331
57526
|
shape: "oval" | "pill";
|
|
57332
57527
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57333
57528
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57377,9 +57572,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57377
57572
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57378
57573
|
rect_ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57379
57574
|
}, "strip", z.ZodTypeAny, {
|
|
57575
|
+
type: "pcb_plated_hole";
|
|
57380
57576
|
x: number;
|
|
57381
57577
|
y: number;
|
|
57382
|
-
type: "pcb_plated_hole";
|
|
57383
57578
|
shape: "circular_hole_with_rect_pad";
|
|
57384
57579
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57385
57580
|
hole_shape: "circle";
|
|
@@ -57400,9 +57595,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57400
57595
|
rect_border_radius?: number | undefined;
|
|
57401
57596
|
rect_ccw_rotation?: number | undefined;
|
|
57402
57597
|
}, {
|
|
57598
|
+
type: "pcb_plated_hole";
|
|
57403
57599
|
x: string | number;
|
|
57404
57600
|
y: string | number;
|
|
57405
|
-
type: "pcb_plated_hole";
|
|
57406
57601
|
shape: "circular_hole_with_rect_pad";
|
|
57407
57602
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57408
57603
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57456,9 +57651,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57456
57651
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57457
57652
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57458
57653
|
}, "strip", z.ZodTypeAny, {
|
|
57654
|
+
type: "pcb_plated_hole";
|
|
57459
57655
|
x: number;
|
|
57460
57656
|
y: number;
|
|
57461
|
-
type: "pcb_plated_hole";
|
|
57462
57657
|
shape: "pill_hole_with_rect_pad";
|
|
57463
57658
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57464
57659
|
hole_shape: "pill";
|
|
@@ -57479,9 +57674,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57479
57674
|
pcb_port_id?: string | undefined;
|
|
57480
57675
|
rect_border_radius?: number | undefined;
|
|
57481
57676
|
}, {
|
|
57677
|
+
type: "pcb_plated_hole";
|
|
57482
57678
|
x: string | number;
|
|
57483
57679
|
y: string | number;
|
|
57484
|
-
type: "pcb_plated_hole";
|
|
57485
57680
|
shape: "pill_hole_with_rect_pad";
|
|
57486
57681
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57487
57682
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57537,9 +57732,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57537
57732
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57538
57733
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57539
57734
|
}, "strip", z.ZodTypeAny, {
|
|
57735
|
+
type: "pcb_plated_hole";
|
|
57540
57736
|
x: number;
|
|
57541
57737
|
y: number;
|
|
57542
|
-
type: "pcb_plated_hole";
|
|
57543
57738
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
57544
57739
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57545
57740
|
hole_shape: "rotated_pill";
|
|
@@ -57562,9 +57757,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57562
57757
|
pcb_port_id?: string | undefined;
|
|
57563
57758
|
rect_border_radius?: number | undefined;
|
|
57564
57759
|
}, {
|
|
57760
|
+
type: "pcb_plated_hole";
|
|
57565
57761
|
x: string | number;
|
|
57566
57762
|
y: string | number;
|
|
57567
|
-
type: "pcb_plated_hole";
|
|
57568
57763
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
57569
57764
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57570
57765
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57628,9 +57823,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57628
57823
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57629
57824
|
ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57630
57825
|
}, "strip", z.ZodTypeAny, {
|
|
57826
|
+
type: "pcb_plated_hole";
|
|
57631
57827
|
x: number;
|
|
57632
57828
|
y: number;
|
|
57633
|
-
type: "pcb_plated_hole";
|
|
57634
57829
|
shape: "hole_with_polygon_pad";
|
|
57635
57830
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57636
57831
|
hole_shape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
@@ -57653,9 +57848,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57653
57848
|
port_hints?: string[] | undefined;
|
|
57654
57849
|
pcb_port_id?: string | undefined;
|
|
57655
57850
|
}, {
|
|
57851
|
+
type: "pcb_plated_hole";
|
|
57656
57852
|
x: string | number;
|
|
57657
57853
|
y: string | number;
|
|
57658
|
-
type: "pcb_plated_hole";
|
|
57659
57854
|
shape: "hole_with_polygon_pad";
|
|
57660
57855
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57661
57856
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57792,9 +57987,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57792
57987
|
}>, "many">;
|
|
57793
57988
|
is_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
57794
57989
|
}, "strip", z.ZodTypeAny, {
|
|
57990
|
+
type: "pcb_port";
|
|
57795
57991
|
x: number;
|
|
57796
57992
|
y: number;
|
|
57797
|
-
type: "pcb_port";
|
|
57798
57993
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57799
57994
|
pcb_port_id: string;
|
|
57800
57995
|
source_port_id: string;
|
|
@@ -57803,9 +57998,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57803
57998
|
pcb_group_id?: string | undefined;
|
|
57804
57999
|
is_board_pinout?: boolean | undefined;
|
|
57805
58000
|
}, {
|
|
58001
|
+
type: "pcb_port";
|
|
57806
58002
|
x: string | number;
|
|
57807
58003
|
y: string | number;
|
|
57808
|
-
type: "pcb_port";
|
|
57809
58004
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57810
58005
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57811
58006
|
})[];
|
|
@@ -58267,9 +58462,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58267
58462
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
58268
58463
|
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
58269
58464
|
}, "strip", z.ZodTypeAny, {
|
|
58465
|
+
type: "pcb_via";
|
|
58270
58466
|
x: number;
|
|
58271
58467
|
y: number;
|
|
58272
|
-
type: "pcb_via";
|
|
58273
58468
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
58274
58469
|
hole_diameter: number;
|
|
58275
58470
|
outer_diameter: number;
|
|
@@ -58284,9 +58479,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58284
58479
|
net_assigned?: boolean | undefined;
|
|
58285
58480
|
is_tented?: boolean | undefined;
|
|
58286
58481
|
}, {
|
|
58482
|
+
type: "pcb_via";
|
|
58287
58483
|
x: string | number;
|
|
58288
58484
|
y: string | number;
|
|
58289
|
-
type: "pcb_via";
|
|
58290
58485
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
58291
58486
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58292
58487
|
})[];
|
|
@@ -58330,9 +58525,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58330
58525
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
58331
58526
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
58332
58527
|
}, "strip", z.ZodTypeAny, {
|
|
58528
|
+
type: "pcb_smtpad";
|
|
58333
58529
|
x: number;
|
|
58334
58530
|
y: number;
|
|
58335
|
-
type: "pcb_smtpad";
|
|
58336
58531
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58337
58532
|
shape: "circle";
|
|
58338
58533
|
pcb_smtpad_id: string;
|
|
@@ -58345,9 +58540,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58345
58540
|
port_hints?: string[] | undefined;
|
|
58346
58541
|
pcb_port_id?: string | undefined;
|
|
58347
58542
|
}, {
|
|
58543
|
+
type: "pcb_smtpad";
|
|
58348
58544
|
x: string | number;
|
|
58349
58545
|
y: string | number;
|
|
58350
|
-
type: "pcb_smtpad";
|
|
58351
58546
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
58352
58547
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58353
58548
|
};
|
|
@@ -58392,9 +58587,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58392
58587
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
58393
58588
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
58394
58589
|
}, "strip", z.ZodTypeAny, {
|
|
58590
|
+
type: "pcb_smtpad";
|
|
58395
58591
|
x: number;
|
|
58396
58592
|
y: number;
|
|
58397
|
-
type: "pcb_smtpad";
|
|
58398
58593
|
width: number;
|
|
58399
58594
|
height: number;
|
|
58400
58595
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58414,9 +58609,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58414
58609
|
soldermask_margin_right?: number | undefined;
|
|
58415
58610
|
soldermask_margin_bottom?: number | undefined;
|
|
58416
58611
|
}, {
|
|
58612
|
+
type: "pcb_smtpad";
|
|
58417
58613
|
x: string | number;
|
|
58418
58614
|
y: string | number;
|
|
58419
|
-
type: "pcb_smtpad";
|
|
58420
58615
|
width: number;
|
|
58421
58616
|
height: number;
|
|
58422
58617
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58469,9 +58664,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58469
58664
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
58470
58665
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
58471
58666
|
}, "strip", z.ZodTypeAny, {
|
|
58667
|
+
type: "pcb_smtpad";
|
|
58472
58668
|
x: number;
|
|
58473
58669
|
y: number;
|
|
58474
|
-
type: "pcb_smtpad";
|
|
58475
58670
|
width: number;
|
|
58476
58671
|
height: number;
|
|
58477
58672
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58492,9 +58687,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58492
58687
|
soldermask_margin_right?: number | undefined;
|
|
58493
58688
|
soldermask_margin_bottom?: number | undefined;
|
|
58494
58689
|
}, {
|
|
58690
|
+
type: "pcb_smtpad";
|
|
58495
58691
|
x: string | number;
|
|
58496
58692
|
y: string | number;
|
|
58497
|
-
type: "pcb_smtpad";
|
|
58498
58693
|
width: number;
|
|
58499
58694
|
height: number;
|
|
58500
58695
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58543,9 +58738,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58543
58738
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
58544
58739
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
58545
58740
|
}, "strip", z.ZodTypeAny, {
|
|
58741
|
+
type: "pcb_smtpad";
|
|
58546
58742
|
x: number;
|
|
58547
58743
|
y: number;
|
|
58548
|
-
type: "pcb_smtpad";
|
|
58549
58744
|
width: number;
|
|
58550
58745
|
height: number;
|
|
58551
58746
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58561,9 +58756,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58561
58756
|
port_hints?: string[] | undefined;
|
|
58562
58757
|
pcb_port_id?: string | undefined;
|
|
58563
58758
|
}, {
|
|
58759
|
+
type: "pcb_smtpad";
|
|
58564
58760
|
x: string | number;
|
|
58565
58761
|
y: string | number;
|
|
58566
|
-
type: "pcb_smtpad";
|
|
58567
58762
|
width: number;
|
|
58568
58763
|
height: number;
|
|
58569
58764
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58606,9 +58801,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58606
58801
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
58607
58802
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
58608
58803
|
}, "strip", z.ZodTypeAny, {
|
|
58804
|
+
type: "pcb_smtpad";
|
|
58609
58805
|
x: number;
|
|
58610
58806
|
y: number;
|
|
58611
|
-
type: "pcb_smtpad";
|
|
58612
58807
|
width: number;
|
|
58613
58808
|
height: number;
|
|
58614
58809
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58623,9 +58818,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58623
58818
|
port_hints?: string[] | undefined;
|
|
58624
58819
|
pcb_port_id?: string | undefined;
|
|
58625
58820
|
}, {
|
|
58821
|
+
type: "pcb_smtpad";
|
|
58626
58822
|
x: string | number;
|
|
58627
58823
|
y: string | number;
|
|
58628
|
-
type: "pcb_smtpad";
|
|
58629
58824
|
width: number;
|
|
58630
58825
|
height: number;
|
|
58631
58826
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58726,9 +58921,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58726
58921
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58727
58922
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58728
58923
|
}, "strip", z.ZodTypeAny, {
|
|
58924
|
+
type: "pcb_solder_paste";
|
|
58729
58925
|
x: number;
|
|
58730
58926
|
y: number;
|
|
58731
|
-
type: "pcb_solder_paste";
|
|
58732
58927
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58733
58928
|
shape: "circle";
|
|
58734
58929
|
radius: number;
|
|
@@ -58738,9 +58933,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58738
58933
|
pcb_group_id?: string | undefined;
|
|
58739
58934
|
pcb_smtpad_id?: string | undefined;
|
|
58740
58935
|
}, {
|
|
58936
|
+
type: "pcb_solder_paste";
|
|
58741
58937
|
x: string | number;
|
|
58742
58938
|
y: string | number;
|
|
58743
|
-
type: "pcb_solder_paste";
|
|
58744
58939
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
58745
58940
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58746
58941
|
};
|
|
@@ -58773,9 +58968,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58773
58968
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58774
58969
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58775
58970
|
}, "strip", z.ZodTypeAny, {
|
|
58971
|
+
type: "pcb_solder_paste";
|
|
58776
58972
|
x: number;
|
|
58777
58973
|
y: number;
|
|
58778
|
-
type: "pcb_solder_paste";
|
|
58779
58974
|
width: number;
|
|
58780
58975
|
height: number;
|
|
58781
58976
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58786,9 +58981,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58786
58981
|
pcb_group_id?: string | undefined;
|
|
58787
58982
|
pcb_smtpad_id?: string | undefined;
|
|
58788
58983
|
}, {
|
|
58984
|
+
type: "pcb_solder_paste";
|
|
58789
58985
|
x: string | number;
|
|
58790
58986
|
y: string | number;
|
|
58791
|
-
type: "pcb_solder_paste";
|
|
58792
58987
|
width: number;
|
|
58793
58988
|
height: number;
|
|
58794
58989
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58823,9 +59018,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58823
59018
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58824
59019
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58825
59020
|
}, "strip", z.ZodTypeAny, {
|
|
59021
|
+
type: "pcb_solder_paste";
|
|
58826
59022
|
x: number;
|
|
58827
59023
|
y: number;
|
|
58828
|
-
type: "pcb_solder_paste";
|
|
58829
59024
|
width: number;
|
|
58830
59025
|
height: number;
|
|
58831
59026
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58837,9 +59032,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58837
59032
|
pcb_group_id?: string | undefined;
|
|
58838
59033
|
pcb_smtpad_id?: string | undefined;
|
|
58839
59034
|
}, {
|
|
59035
|
+
type: "pcb_solder_paste";
|
|
58840
59036
|
x: string | number;
|
|
58841
59037
|
y: string | number;
|
|
58842
|
-
type: "pcb_solder_paste";
|
|
58843
59038
|
width: number;
|
|
58844
59039
|
height: number;
|
|
58845
59040
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58875,9 +59070,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58875
59070
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58876
59071
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58877
59072
|
}, "strip", z.ZodTypeAny, {
|
|
59073
|
+
type: "pcb_solder_paste";
|
|
58878
59074
|
x: number;
|
|
58879
59075
|
y: number;
|
|
58880
|
-
type: "pcb_solder_paste";
|
|
58881
59076
|
width: number;
|
|
58882
59077
|
height: number;
|
|
58883
59078
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58889,9 +59084,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58889
59084
|
pcb_group_id?: string | undefined;
|
|
58890
59085
|
pcb_smtpad_id?: string | undefined;
|
|
58891
59086
|
}, {
|
|
59087
|
+
type: "pcb_solder_paste";
|
|
58892
59088
|
x: string | number;
|
|
58893
59089
|
y: string | number;
|
|
58894
|
-
type: "pcb_solder_paste";
|
|
58895
59090
|
width: number;
|
|
58896
59091
|
height: number;
|
|
58897
59092
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58926,9 +59121,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58926
59121
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58927
59122
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58928
59123
|
}, "strip", z.ZodTypeAny, {
|
|
59124
|
+
type: "pcb_solder_paste";
|
|
58929
59125
|
x: number;
|
|
58930
59126
|
y: number;
|
|
58931
|
-
type: "pcb_solder_paste";
|
|
58932
59127
|
width: number;
|
|
58933
59128
|
height: number;
|
|
58934
59129
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58939,9 +59134,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58939
59134
|
pcb_group_id?: string | undefined;
|
|
58940
59135
|
pcb_smtpad_id?: string | undefined;
|
|
58941
59136
|
}, {
|
|
59137
|
+
type: "pcb_solder_paste";
|
|
58942
59138
|
x: string | number;
|
|
58943
59139
|
y: string | number;
|
|
58944
|
-
type: "pcb_solder_paste";
|
|
58945
59140
|
width: number;
|
|
58946
59141
|
height: number;
|
|
58947
59142
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -61087,9 +61282,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
61087
61282
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
61088
61283
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
61089
61284
|
}, "strip", z.ZodTypeAny, {
|
|
61285
|
+
type: "pcb_breakout_point";
|
|
61090
61286
|
x: number;
|
|
61091
61287
|
y: number;
|
|
61092
|
-
type: "pcb_breakout_point";
|
|
61093
61288
|
pcb_group_id: string;
|
|
61094
61289
|
pcb_breakout_point_id: string;
|
|
61095
61290
|
subcircuit_id?: string | undefined;
|
|
@@ -61097,9 +61292,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
61097
61292
|
source_trace_id?: string | undefined;
|
|
61098
61293
|
source_net_id?: string | undefined;
|
|
61099
61294
|
}, {
|
|
61295
|
+
type: "pcb_breakout_point";
|
|
61100
61296
|
x: string | number;
|
|
61101
61297
|
y: string | number;
|
|
61102
|
-
type: "pcb_breakout_point";
|
|
61103
61298
|
pcb_group_id: string;
|
|
61104
61299
|
subcircuit_id?: string | undefined;
|
|
61105
61300
|
source_port_id?: string | undefined;
|
|
@@ -62094,9 +62289,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62094
62289
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
62095
62290
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
62096
62291
|
}, "strip", z.ZodTypeAny, {
|
|
62292
|
+
type: "schematic_box";
|
|
62097
62293
|
x: number;
|
|
62098
62294
|
y: number;
|
|
62099
|
-
type: "schematic_box";
|
|
62100
62295
|
width: number;
|
|
62101
62296
|
height: number;
|
|
62102
62297
|
is_dashed: boolean;
|
|
@@ -62104,9 +62299,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62104
62299
|
schematic_component_id?: string | undefined;
|
|
62105
62300
|
schematic_symbol_id?: string | undefined;
|
|
62106
62301
|
}, {
|
|
62302
|
+
type: "schematic_box";
|
|
62107
62303
|
x: string | number;
|
|
62108
62304
|
y: string | number;
|
|
62109
|
-
type: "schematic_box";
|
|
62110
62305
|
width: string | number;
|
|
62111
62306
|
height: string | number;
|
|
62112
62307
|
subcircuit_id?: string | undefined;
|
|
@@ -70407,6 +70602,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70407
70602
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
70408
70603
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70409
70604
|
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
70605
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70606
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70607
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70608
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70609
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70410
70610
|
}, "strip", z.ZodTypeAny, {
|
|
70411
70611
|
type: "simulation_voltage_source";
|
|
70412
70612
|
simulation_voltage_source_id: string;
|
|
@@ -70421,6 +70621,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70421
70621
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
70422
70622
|
phase?: number | undefined;
|
|
70423
70623
|
duty_cycle?: number | undefined;
|
|
70624
|
+
pulse_delay?: number | undefined;
|
|
70625
|
+
rise_time?: number | undefined;
|
|
70626
|
+
fall_time?: number | undefined;
|
|
70627
|
+
pulse_width?: number | undefined;
|
|
70628
|
+
period?: number | undefined;
|
|
70424
70629
|
}, {
|
|
70425
70630
|
type: "simulation_voltage_source";
|
|
70426
70631
|
is_dc_source: false;
|
|
@@ -70435,6 +70640,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70435
70640
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
70436
70641
|
phase?: string | number | undefined;
|
|
70437
70642
|
duty_cycle?: string | number | undefined;
|
|
70643
|
+
pulse_delay?: string | number | undefined;
|
|
70644
|
+
rise_time?: string | number | undefined;
|
|
70645
|
+
fall_time?: string | number | undefined;
|
|
70646
|
+
pulse_width?: string | number | undefined;
|
|
70647
|
+
period?: string | number | undefined;
|
|
70438
70648
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
70439
70649
|
type: z.ZodLiteral<"simulation_current_source">;
|
|
70440
70650
|
simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -70512,6 +70722,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70512
70722
|
time_per_step: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70513
70723
|
start_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70514
70724
|
end_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70725
|
+
spice_options: z.ZodOptional<z.ZodObject<{
|
|
70726
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
70727
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
70728
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
70729
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
70730
|
+
}, "strip", z.ZodTypeAny, {
|
|
70731
|
+
method?: "trap" | "gear" | undefined;
|
|
70732
|
+
reltol?: string | number | undefined;
|
|
70733
|
+
abstol?: string | number | undefined;
|
|
70734
|
+
vntol?: string | number | undefined;
|
|
70735
|
+
}, {
|
|
70736
|
+
method?: "trap" | "gear" | undefined;
|
|
70737
|
+
reltol?: string | number | undefined;
|
|
70738
|
+
abstol?: string | number | undefined;
|
|
70739
|
+
vntol?: string | number | undefined;
|
|
70740
|
+
}>>;
|
|
70515
70741
|
}, "strip", z.ZodTypeAny, {
|
|
70516
70742
|
type: "simulation_experiment";
|
|
70517
70743
|
name: string;
|
|
@@ -70520,6 +70746,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70520
70746
|
time_per_step?: number | undefined;
|
|
70521
70747
|
start_time_ms?: number | undefined;
|
|
70522
70748
|
end_time_ms?: number | undefined;
|
|
70749
|
+
spice_options?: {
|
|
70750
|
+
method?: "trap" | "gear" | undefined;
|
|
70751
|
+
reltol?: string | number | undefined;
|
|
70752
|
+
abstol?: string | number | undefined;
|
|
70753
|
+
vntol?: string | number | undefined;
|
|
70754
|
+
} | undefined;
|
|
70523
70755
|
}, {
|
|
70524
70756
|
type: "simulation_experiment";
|
|
70525
70757
|
name: string;
|
|
@@ -70528,6 +70760,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70528
70760
|
time_per_step?: string | number | undefined;
|
|
70529
70761
|
start_time_ms?: string | number | undefined;
|
|
70530
70762
|
end_time_ms?: string | number | undefined;
|
|
70763
|
+
spice_options?: {
|
|
70764
|
+
method?: "trap" | "gear" | undefined;
|
|
70765
|
+
reltol?: string | number | undefined;
|
|
70766
|
+
abstol?: string | number | undefined;
|
|
70767
|
+
vntol?: string | number | undefined;
|
|
70768
|
+
} | undefined;
|
|
70531
70769
|
}>, z.ZodObject<{
|
|
70532
70770
|
type: z.ZodLiteral<"simulation_transient_voltage_graph">;
|
|
70533
70771
|
simulation_transient_voltage_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -70733,4 +70971,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
70733
70971
|
*/
|
|
70734
70972
|
type CircuitJson = AnyCircuitElement[];
|
|
70735
70973
|
|
|
70736
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
70974
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|