circuit-json 0.0.433 → 0.0.435
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/dist/index.d.mts +564 -183
- package/dist/index.mjs +42 -216
- 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
|
|
|
@@ -26261,6 +26348,22 @@ interface SimulationSwitch {
|
|
|
26261
26348
|
switching_frequency?: number;
|
|
26262
26349
|
}
|
|
26263
26350
|
|
|
26351
|
+
declare const simulation_voltage_probe_display_options: z.ZodObject<{
|
|
26352
|
+
label: z.ZodOptional<z.ZodString>;
|
|
26353
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
26354
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
26355
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
26356
|
+
}, "strip", z.ZodTypeAny, {
|
|
26357
|
+
center?: number | undefined;
|
|
26358
|
+
label?: string | undefined;
|
|
26359
|
+
offset_divs?: number | undefined;
|
|
26360
|
+
units_per_div?: number | undefined;
|
|
26361
|
+
}, {
|
|
26362
|
+
center?: number | undefined;
|
|
26363
|
+
label?: string | undefined;
|
|
26364
|
+
offset_divs?: number | undefined;
|
|
26365
|
+
units_per_div?: number | undefined;
|
|
26366
|
+
}>;
|
|
26264
26367
|
declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
26265
26368
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
26266
26369
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -26272,6 +26375,22 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
26272
26375
|
reference_input_source_net_id: z.ZodOptional<z.ZodString>;
|
|
26273
26376
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
26274
26377
|
color: z.ZodOptional<z.ZodString>;
|
|
26378
|
+
display_options: z.ZodOptional<z.ZodObject<{
|
|
26379
|
+
label: z.ZodOptional<z.ZodString>;
|
|
26380
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
26381
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
26382
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
26383
|
+
}, "strip", z.ZodTypeAny, {
|
|
26384
|
+
center?: number | undefined;
|
|
26385
|
+
label?: string | undefined;
|
|
26386
|
+
offset_divs?: number | undefined;
|
|
26387
|
+
units_per_div?: number | undefined;
|
|
26388
|
+
}, {
|
|
26389
|
+
center?: number | undefined;
|
|
26390
|
+
label?: string | undefined;
|
|
26391
|
+
offset_divs?: number | undefined;
|
|
26392
|
+
units_per_div?: number | undefined;
|
|
26393
|
+
}>>;
|
|
26275
26394
|
}, "strip", z.ZodTypeAny, {
|
|
26276
26395
|
type: "simulation_voltage_probe";
|
|
26277
26396
|
simulation_voltage_probe_id: string;
|
|
@@ -26283,6 +26402,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
26283
26402
|
signal_input_source_net_id?: string | undefined;
|
|
26284
26403
|
reference_input_source_port_id?: string | undefined;
|
|
26285
26404
|
reference_input_source_net_id?: string | undefined;
|
|
26405
|
+
display_options?: {
|
|
26406
|
+
center?: number | undefined;
|
|
26407
|
+
label?: string | undefined;
|
|
26408
|
+
offset_divs?: number | undefined;
|
|
26409
|
+
units_per_div?: number | undefined;
|
|
26410
|
+
} | undefined;
|
|
26286
26411
|
}, {
|
|
26287
26412
|
type: "simulation_voltage_probe";
|
|
26288
26413
|
name?: string | undefined;
|
|
@@ -26294,6 +26419,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
26294
26419
|
signal_input_source_net_id?: string | undefined;
|
|
26295
26420
|
reference_input_source_port_id?: string | undefined;
|
|
26296
26421
|
reference_input_source_net_id?: string | undefined;
|
|
26422
|
+
display_options?: {
|
|
26423
|
+
center?: number | undefined;
|
|
26424
|
+
label?: string | undefined;
|
|
26425
|
+
offset_divs?: number | undefined;
|
|
26426
|
+
units_per_div?: number | undefined;
|
|
26427
|
+
} | undefined;
|
|
26297
26428
|
}>, {
|
|
26298
26429
|
type: "simulation_voltage_probe";
|
|
26299
26430
|
simulation_voltage_probe_id: string;
|
|
@@ -26305,6 +26436,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
26305
26436
|
signal_input_source_net_id?: string | undefined;
|
|
26306
26437
|
reference_input_source_port_id?: string | undefined;
|
|
26307
26438
|
reference_input_source_net_id?: string | undefined;
|
|
26439
|
+
display_options?: {
|
|
26440
|
+
center?: number | undefined;
|
|
26441
|
+
label?: string | undefined;
|
|
26442
|
+
offset_divs?: number | undefined;
|
|
26443
|
+
units_per_div?: number | undefined;
|
|
26444
|
+
} | undefined;
|
|
26308
26445
|
}, {
|
|
26309
26446
|
type: "simulation_voltage_probe";
|
|
26310
26447
|
name?: string | undefined;
|
|
@@ -26316,6 +26453,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
26316
26453
|
signal_input_source_net_id?: string | undefined;
|
|
26317
26454
|
reference_input_source_port_id?: string | undefined;
|
|
26318
26455
|
reference_input_source_net_id?: string | undefined;
|
|
26456
|
+
display_options?: {
|
|
26457
|
+
center?: number | undefined;
|
|
26458
|
+
label?: string | undefined;
|
|
26459
|
+
offset_divs?: number | undefined;
|
|
26460
|
+
units_per_div?: number | undefined;
|
|
26461
|
+
} | undefined;
|
|
26319
26462
|
}>;
|
|
26320
26463
|
type SimulationVoltageProbeInput = z.input<typeof simulation_voltage_probe>;
|
|
26321
26464
|
/**
|
|
@@ -26334,6 +26477,13 @@ interface SimulationVoltageProbe {
|
|
|
26334
26477
|
reference_input_source_net_id?: string;
|
|
26335
26478
|
subcircuit_id?: string;
|
|
26336
26479
|
color?: string;
|
|
26480
|
+
display_options?: SimulationVoltageProbeDisplayOptions;
|
|
26481
|
+
}
|
|
26482
|
+
interface SimulationVoltageProbeDisplayOptions {
|
|
26483
|
+
label?: string;
|
|
26484
|
+
center?: number;
|
|
26485
|
+
offset_divs?: number;
|
|
26486
|
+
units_per_div?: number;
|
|
26337
26487
|
}
|
|
26338
26488
|
|
|
26339
26489
|
declare const simulation_unknown_experiment_error: z.ZodObject<{
|
|
@@ -28520,6 +28670,11 @@ declare const source_simple_voltage_source: z.ZodObject<{
|
|
|
28520
28670
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
28521
28671
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28522
28672
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
28673
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28674
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28675
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28676
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28677
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28523
28678
|
}, "strip", z.ZodTypeAny, {
|
|
28524
28679
|
type: "source_component";
|
|
28525
28680
|
name: string;
|
|
@@ -28533,6 +28688,11 @@ declare const source_simple_voltage_source: z.ZodObject<{
|
|
|
28533
28688
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
28534
28689
|
phase?: number | undefined;
|
|
28535
28690
|
duty_cycle?: number | undefined;
|
|
28691
|
+
pulse_delay?: number | undefined;
|
|
28692
|
+
rise_time?: number | undefined;
|
|
28693
|
+
fall_time?: number | undefined;
|
|
28694
|
+
pulse_width?: number | undefined;
|
|
28695
|
+
period?: number | undefined;
|
|
28536
28696
|
manufacturer_part_number?: string | undefined;
|
|
28537
28697
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28538
28698
|
display_value?: string | undefined;
|
|
@@ -28552,6 +28712,11 @@ declare const source_simple_voltage_source: z.ZodObject<{
|
|
|
28552
28712
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
28553
28713
|
phase?: string | number | undefined;
|
|
28554
28714
|
duty_cycle?: number | undefined;
|
|
28715
|
+
pulse_delay?: string | number | undefined;
|
|
28716
|
+
rise_time?: string | number | undefined;
|
|
28717
|
+
fall_time?: string | number | undefined;
|
|
28718
|
+
pulse_width?: string | number | undefined;
|
|
28719
|
+
period?: string | number | undefined;
|
|
28555
28720
|
manufacturer_part_number?: string | undefined;
|
|
28556
28721
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
28557
28722
|
display_value?: string | undefined;
|
|
@@ -28571,6 +28736,11 @@ interface SourceSimpleVoltageSource extends SourceComponentBase {
|
|
|
28571
28736
|
wave_shape?: "sinewave" | "square" | "triangle" | "sawtooth";
|
|
28572
28737
|
phase?: number;
|
|
28573
28738
|
duty_cycle?: number;
|
|
28739
|
+
pulse_delay?: number;
|
|
28740
|
+
rise_time?: number;
|
|
28741
|
+
fall_time?: number;
|
|
28742
|
+
pulse_width?: number;
|
|
28743
|
+
period?: number;
|
|
28574
28744
|
}
|
|
28575
28745
|
|
|
28576
28746
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
@@ -29756,6 +29926,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
29756
29926
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
29757
29927
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29758
29928
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
29929
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29930
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29931
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29932
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29933
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
29759
29934
|
}, "strip", z.ZodTypeAny, {
|
|
29760
29935
|
type: "source_component";
|
|
29761
29936
|
name: string;
|
|
@@ -29769,6 +29944,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
29769
29944
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
29770
29945
|
phase?: number | undefined;
|
|
29771
29946
|
duty_cycle?: number | undefined;
|
|
29947
|
+
pulse_delay?: number | undefined;
|
|
29948
|
+
rise_time?: number | undefined;
|
|
29949
|
+
fall_time?: number | undefined;
|
|
29950
|
+
pulse_width?: number | undefined;
|
|
29951
|
+
period?: number | undefined;
|
|
29772
29952
|
manufacturer_part_number?: string | undefined;
|
|
29773
29953
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
29774
29954
|
display_value?: string | undefined;
|
|
@@ -29788,6 +29968,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
29788
29968
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
29789
29969
|
phase?: string | number | undefined;
|
|
29790
29970
|
duty_cycle?: number | undefined;
|
|
29971
|
+
pulse_delay?: string | number | undefined;
|
|
29972
|
+
rise_time?: string | number | undefined;
|
|
29973
|
+
fall_time?: string | number | undefined;
|
|
29974
|
+
pulse_width?: string | number | undefined;
|
|
29975
|
+
period?: string | number | undefined;
|
|
29791
29976
|
manufacturer_part_number?: string | undefined;
|
|
29792
29977
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
29793
29978
|
display_value?: string | undefined;
|
|
@@ -34986,6 +35171,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34986
35171
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
34987
35172
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34988
35173
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
35174
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35175
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35176
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35177
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
35178
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
34989
35179
|
}, "strip", z.ZodTypeAny, {
|
|
34990
35180
|
type: "source_component";
|
|
34991
35181
|
name: string;
|
|
@@ -34999,6 +35189,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34999
35189
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
35000
35190
|
phase?: number | undefined;
|
|
35001
35191
|
duty_cycle?: number | undefined;
|
|
35192
|
+
pulse_delay?: number | undefined;
|
|
35193
|
+
rise_time?: number | undefined;
|
|
35194
|
+
fall_time?: number | undefined;
|
|
35195
|
+
pulse_width?: number | undefined;
|
|
35196
|
+
period?: number | undefined;
|
|
35002
35197
|
manufacturer_part_number?: string | undefined;
|
|
35003
35198
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
35004
35199
|
display_value?: string | undefined;
|
|
@@ -35018,6 +35213,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35018
35213
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
35019
35214
|
phase?: string | number | undefined;
|
|
35020
35215
|
duty_cycle?: number | undefined;
|
|
35216
|
+
pulse_delay?: string | number | undefined;
|
|
35217
|
+
rise_time?: string | number | undefined;
|
|
35218
|
+
fall_time?: string | number | undefined;
|
|
35219
|
+
pulse_width?: string | number | undefined;
|
|
35220
|
+
period?: string | number | undefined;
|
|
35021
35221
|
manufacturer_part_number?: string | undefined;
|
|
35022
35222
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
35023
35223
|
display_value?: string | undefined;
|
|
@@ -38252,9 +38452,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38252
38452
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38253
38453
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38254
38454
|
}, "strip", z.ZodTypeAny, {
|
|
38455
|
+
type: "pcb_hole";
|
|
38255
38456
|
x: number;
|
|
38256
38457
|
y: number;
|
|
38257
|
-
type: "pcb_hole";
|
|
38258
38458
|
pcb_hole_id: string;
|
|
38259
38459
|
hole_shape: "circle" | "square";
|
|
38260
38460
|
hole_diameter: number;
|
|
@@ -38264,9 +38464,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38264
38464
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38265
38465
|
soldermask_margin?: number | undefined;
|
|
38266
38466
|
}, {
|
|
38467
|
+
type: "pcb_hole";
|
|
38267
38468
|
x: string | number;
|
|
38268
38469
|
y: string | number;
|
|
38269
|
-
type: "pcb_hole";
|
|
38270
38470
|
hole_shape: "circle" | "square";
|
|
38271
38471
|
hole_diameter: number;
|
|
38272
38472
|
pcb_component_id?: string | undefined;
|
|
@@ -38289,9 +38489,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38289
38489
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38290
38490
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38291
38491
|
}, "strip", z.ZodTypeAny, {
|
|
38492
|
+
type: "pcb_hole";
|
|
38292
38493
|
x: number;
|
|
38293
38494
|
y: number;
|
|
38294
|
-
type: "pcb_hole";
|
|
38295
38495
|
pcb_hole_id: string;
|
|
38296
38496
|
hole_shape: "oval";
|
|
38297
38497
|
hole_width: number;
|
|
@@ -38302,9 +38502,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38302
38502
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38303
38503
|
soldermask_margin?: number | undefined;
|
|
38304
38504
|
}, {
|
|
38505
|
+
type: "pcb_hole";
|
|
38305
38506
|
x: string | number;
|
|
38306
38507
|
y: string | number;
|
|
38307
|
-
type: "pcb_hole";
|
|
38308
38508
|
hole_shape: "oval";
|
|
38309
38509
|
hole_width: number;
|
|
38310
38510
|
hole_height: number;
|
|
@@ -38328,9 +38528,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38328
38528
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38329
38529
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38330
38530
|
}, "strip", z.ZodTypeAny, {
|
|
38531
|
+
type: "pcb_hole";
|
|
38331
38532
|
x: number;
|
|
38332
38533
|
y: number;
|
|
38333
|
-
type: "pcb_hole";
|
|
38334
38534
|
pcb_hole_id: string;
|
|
38335
38535
|
hole_shape: "pill";
|
|
38336
38536
|
hole_width: number;
|
|
@@ -38341,9 +38541,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38341
38541
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38342
38542
|
soldermask_margin?: number | undefined;
|
|
38343
38543
|
}, {
|
|
38544
|
+
type: "pcb_hole";
|
|
38344
38545
|
x: string | number;
|
|
38345
38546
|
y: string | number;
|
|
38346
|
-
type: "pcb_hole";
|
|
38347
38547
|
hole_shape: "pill";
|
|
38348
38548
|
hole_width: number;
|
|
38349
38549
|
hole_height: number;
|
|
@@ -38368,9 +38568,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38368
38568
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38369
38569
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38370
38570
|
}, "strip", z.ZodTypeAny, {
|
|
38571
|
+
type: "pcb_hole";
|
|
38371
38572
|
x: number;
|
|
38372
38573
|
y: number;
|
|
38373
|
-
type: "pcb_hole";
|
|
38374
38574
|
pcb_hole_id: string;
|
|
38375
38575
|
hole_shape: "rotated_pill";
|
|
38376
38576
|
hole_width: number;
|
|
@@ -38382,9 +38582,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38382
38582
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38383
38583
|
soldermask_margin?: number | undefined;
|
|
38384
38584
|
}, {
|
|
38585
|
+
type: "pcb_hole";
|
|
38385
38586
|
x: string | number;
|
|
38386
38587
|
y: string | number;
|
|
38387
|
-
type: "pcb_hole";
|
|
38388
38588
|
hole_shape: "rotated_pill";
|
|
38389
38589
|
hole_width: number;
|
|
38390
38590
|
hole_height: number;
|
|
@@ -38408,9 +38608,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38408
38608
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38409
38609
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38410
38610
|
}, "strip", z.ZodTypeAny, {
|
|
38611
|
+
type: "pcb_hole";
|
|
38411
38612
|
x: number;
|
|
38412
38613
|
y: number;
|
|
38413
|
-
type: "pcb_hole";
|
|
38414
38614
|
pcb_hole_id: string;
|
|
38415
38615
|
hole_shape: "circle";
|
|
38416
38616
|
hole_diameter: number;
|
|
@@ -38420,9 +38620,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38420
38620
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38421
38621
|
soldermask_margin?: number | undefined;
|
|
38422
38622
|
}, {
|
|
38623
|
+
type: "pcb_hole";
|
|
38423
38624
|
x: string | number;
|
|
38424
38625
|
y: string | number;
|
|
38425
|
-
type: "pcb_hole";
|
|
38426
38626
|
hole_shape: "circle";
|
|
38427
38627
|
hole_diameter: number;
|
|
38428
38628
|
pcb_component_id?: string | undefined;
|
|
@@ -38445,9 +38645,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38445
38645
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
38446
38646
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38447
38647
|
}, "strip", z.ZodTypeAny, {
|
|
38648
|
+
type: "pcb_hole";
|
|
38448
38649
|
x: number;
|
|
38449
38650
|
y: number;
|
|
38450
|
-
type: "pcb_hole";
|
|
38451
38651
|
pcb_hole_id: string;
|
|
38452
38652
|
hole_shape: "rect";
|
|
38453
38653
|
hole_width: number;
|
|
@@ -38458,9 +38658,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38458
38658
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
38459
38659
|
soldermask_margin?: number | undefined;
|
|
38460
38660
|
}, {
|
|
38661
|
+
type: "pcb_hole";
|
|
38461
38662
|
x: string | number;
|
|
38462
38663
|
y: string | number;
|
|
38463
|
-
type: "pcb_hole";
|
|
38464
38664
|
hole_shape: "rect";
|
|
38465
38665
|
hole_width: number;
|
|
38466
38666
|
hole_height: number;
|
|
@@ -38690,9 +38890,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38690
38890
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38691
38891
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38692
38892
|
}, "strip", z.ZodTypeAny, {
|
|
38893
|
+
type: "pcb_plated_hole";
|
|
38693
38894
|
x: number;
|
|
38694
38895
|
y: number;
|
|
38695
|
-
type: "pcb_plated_hole";
|
|
38696
38896
|
shape: "circle";
|
|
38697
38897
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38698
38898
|
hole_diameter: number;
|
|
@@ -38706,9 +38906,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38706
38906
|
port_hints?: string[] | undefined;
|
|
38707
38907
|
pcb_port_id?: string | undefined;
|
|
38708
38908
|
}, {
|
|
38909
|
+
type: "pcb_plated_hole";
|
|
38709
38910
|
x: string | number;
|
|
38710
38911
|
y: string | number;
|
|
38711
|
-
type: "pcb_plated_hole";
|
|
38712
38912
|
shape: "circle";
|
|
38713
38913
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38714
38914
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38751,9 +38951,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38751
38951
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38752
38952
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38753
38953
|
}, "strip", z.ZodTypeAny, {
|
|
38954
|
+
type: "pcb_plated_hole";
|
|
38754
38955
|
x: number;
|
|
38755
38956
|
y: number;
|
|
38756
|
-
type: "pcb_plated_hole";
|
|
38757
38957
|
shape: "oval" | "pill";
|
|
38758
38958
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38759
38959
|
hole_width: number;
|
|
@@ -38770,9 +38970,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38770
38970
|
port_hints?: string[] | undefined;
|
|
38771
38971
|
pcb_port_id?: string | undefined;
|
|
38772
38972
|
}, {
|
|
38973
|
+
type: "pcb_plated_hole";
|
|
38773
38974
|
x: string | number;
|
|
38774
38975
|
y: string | number;
|
|
38775
|
-
type: "pcb_plated_hole";
|
|
38776
38976
|
shape: "oval" | "pill";
|
|
38777
38977
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38778
38978
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38822,9 +39022,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38822
39022
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38823
39023
|
rect_ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
38824
39024
|
}, "strip", z.ZodTypeAny, {
|
|
39025
|
+
type: "pcb_plated_hole";
|
|
38825
39026
|
x: number;
|
|
38826
39027
|
y: number;
|
|
38827
|
-
type: "pcb_plated_hole";
|
|
38828
39028
|
shape: "circular_hole_with_rect_pad";
|
|
38829
39029
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38830
39030
|
hole_shape: "circle";
|
|
@@ -38845,9 +39045,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38845
39045
|
rect_border_radius?: number | undefined;
|
|
38846
39046
|
rect_ccw_rotation?: number | undefined;
|
|
38847
39047
|
}, {
|
|
39048
|
+
type: "pcb_plated_hole";
|
|
38848
39049
|
x: string | number;
|
|
38849
39050
|
y: string | number;
|
|
38850
|
-
type: "pcb_plated_hole";
|
|
38851
39051
|
shape: "circular_hole_with_rect_pad";
|
|
38852
39052
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38853
39053
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38901,9 +39101,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38901
39101
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38902
39102
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38903
39103
|
}, "strip", z.ZodTypeAny, {
|
|
39104
|
+
type: "pcb_plated_hole";
|
|
38904
39105
|
x: number;
|
|
38905
39106
|
y: number;
|
|
38906
|
-
type: "pcb_plated_hole";
|
|
38907
39107
|
shape: "pill_hole_with_rect_pad";
|
|
38908
39108
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38909
39109
|
hole_shape: "pill";
|
|
@@ -38924,9 +39124,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38924
39124
|
pcb_port_id?: string | undefined;
|
|
38925
39125
|
rect_border_radius?: number | undefined;
|
|
38926
39126
|
}, {
|
|
39127
|
+
type: "pcb_plated_hole";
|
|
38927
39128
|
x: string | number;
|
|
38928
39129
|
y: string | number;
|
|
38929
|
-
type: "pcb_plated_hole";
|
|
38930
39130
|
shape: "pill_hole_with_rect_pad";
|
|
38931
39131
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
38932
39132
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -38982,9 +39182,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38982
39182
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38983
39183
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
38984
39184
|
}, "strip", z.ZodTypeAny, {
|
|
39185
|
+
type: "pcb_plated_hole";
|
|
38985
39186
|
x: number;
|
|
38986
39187
|
y: number;
|
|
38987
|
-
type: "pcb_plated_hole";
|
|
38988
39188
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
38989
39189
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
38990
39190
|
hole_shape: "rotated_pill";
|
|
@@ -39007,9 +39207,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39007
39207
|
pcb_port_id?: string | undefined;
|
|
39008
39208
|
rect_border_radius?: number | undefined;
|
|
39009
39209
|
}, {
|
|
39210
|
+
type: "pcb_plated_hole";
|
|
39010
39211
|
x: string | number;
|
|
39011
39212
|
y: string | number;
|
|
39012
|
-
type: "pcb_plated_hole";
|
|
39013
39213
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
39014
39214
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39015
39215
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39073,9 +39273,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39073
39273
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
39074
39274
|
ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
39075
39275
|
}, "strip", z.ZodTypeAny, {
|
|
39276
|
+
type: "pcb_plated_hole";
|
|
39076
39277
|
x: number;
|
|
39077
39278
|
y: number;
|
|
39078
|
-
type: "pcb_plated_hole";
|
|
39079
39279
|
shape: "hole_with_polygon_pad";
|
|
39080
39280
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
39081
39281
|
hole_shape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
@@ -39098,9 +39298,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39098
39298
|
port_hints?: string[] | undefined;
|
|
39099
39299
|
pcb_port_id?: string | undefined;
|
|
39100
39300
|
}, {
|
|
39301
|
+
type: "pcb_plated_hole";
|
|
39101
39302
|
x: string | number;
|
|
39102
39303
|
y: string | number;
|
|
39103
|
-
type: "pcb_plated_hole";
|
|
39104
39304
|
shape: "hole_with_polygon_pad";
|
|
39105
39305
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39106
39306
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39237,9 +39437,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39237
39437
|
}>, "many">;
|
|
39238
39438
|
is_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
39239
39439
|
}, "strip", z.ZodTypeAny, {
|
|
39440
|
+
type: "pcb_port";
|
|
39240
39441
|
x: number;
|
|
39241
39442
|
y: number;
|
|
39242
|
-
type: "pcb_port";
|
|
39243
39443
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
39244
39444
|
pcb_port_id: string;
|
|
39245
39445
|
source_port_id: string;
|
|
@@ -39248,9 +39448,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39248
39448
|
pcb_group_id?: string | undefined;
|
|
39249
39449
|
is_board_pinout?: boolean | undefined;
|
|
39250
39450
|
}, {
|
|
39451
|
+
type: "pcb_port";
|
|
39251
39452
|
x: string | number;
|
|
39252
39453
|
y: string | number;
|
|
39253
|
-
type: "pcb_port";
|
|
39254
39454
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39255
39455
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39256
39456
|
})[];
|
|
@@ -39712,9 +39912,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39712
39912
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
39713
39913
|
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
39714
39914
|
}, "strip", z.ZodTypeAny, {
|
|
39915
|
+
type: "pcb_via";
|
|
39715
39916
|
x: number;
|
|
39716
39917
|
y: number;
|
|
39717
|
-
type: "pcb_via";
|
|
39718
39918
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
39719
39919
|
hole_diameter: number;
|
|
39720
39920
|
outer_diameter: number;
|
|
@@ -39729,9 +39929,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39729
39929
|
net_assigned?: boolean | undefined;
|
|
39730
39930
|
is_tented?: boolean | undefined;
|
|
39731
39931
|
}, {
|
|
39932
|
+
type: "pcb_via";
|
|
39732
39933
|
x: string | number;
|
|
39733
39934
|
y: string | number;
|
|
39734
|
-
type: "pcb_via";
|
|
39735
39935
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39736
39936
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39737
39937
|
})[];
|
|
@@ -39775,9 +39975,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39775
39975
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
39776
39976
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
39777
39977
|
}, "strip", z.ZodTypeAny, {
|
|
39978
|
+
type: "pcb_smtpad";
|
|
39778
39979
|
x: number;
|
|
39779
39980
|
y: number;
|
|
39780
|
-
type: "pcb_smtpad";
|
|
39781
39981
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39782
39982
|
shape: "circle";
|
|
39783
39983
|
pcb_smtpad_id: string;
|
|
@@ -39790,9 +39990,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39790
39990
|
port_hints?: string[] | undefined;
|
|
39791
39991
|
pcb_port_id?: string | undefined;
|
|
39792
39992
|
}, {
|
|
39993
|
+
type: "pcb_smtpad";
|
|
39793
39994
|
x: string | number;
|
|
39794
39995
|
y: string | number;
|
|
39795
|
-
type: "pcb_smtpad";
|
|
39796
39996
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
39797
39997
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
39798
39998
|
};
|
|
@@ -39837,9 +40037,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39837
40037
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
39838
40038
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
39839
40039
|
}, "strip", z.ZodTypeAny, {
|
|
40040
|
+
type: "pcb_smtpad";
|
|
39840
40041
|
x: number;
|
|
39841
40042
|
y: number;
|
|
39842
|
-
type: "pcb_smtpad";
|
|
39843
40043
|
width: number;
|
|
39844
40044
|
height: number;
|
|
39845
40045
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39859,9 +40059,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39859
40059
|
soldermask_margin_right?: number | undefined;
|
|
39860
40060
|
soldermask_margin_bottom?: number | undefined;
|
|
39861
40061
|
}, {
|
|
40062
|
+
type: "pcb_smtpad";
|
|
39862
40063
|
x: string | number;
|
|
39863
40064
|
y: string | number;
|
|
39864
|
-
type: "pcb_smtpad";
|
|
39865
40065
|
width: number;
|
|
39866
40066
|
height: number;
|
|
39867
40067
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -39914,9 +40114,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39914
40114
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
39915
40115
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
39916
40116
|
}, "strip", z.ZodTypeAny, {
|
|
40117
|
+
type: "pcb_smtpad";
|
|
39917
40118
|
x: number;
|
|
39918
40119
|
y: number;
|
|
39919
|
-
type: "pcb_smtpad";
|
|
39920
40120
|
width: number;
|
|
39921
40121
|
height: number;
|
|
39922
40122
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -39937,9 +40137,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39937
40137
|
soldermask_margin_right?: number | undefined;
|
|
39938
40138
|
soldermask_margin_bottom?: number | undefined;
|
|
39939
40139
|
}, {
|
|
40140
|
+
type: "pcb_smtpad";
|
|
39940
40141
|
x: string | number;
|
|
39941
40142
|
y: string | number;
|
|
39942
|
-
type: "pcb_smtpad";
|
|
39943
40143
|
width: number;
|
|
39944
40144
|
height: number;
|
|
39945
40145
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -39988,9 +40188,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39988
40188
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
39989
40189
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
39990
40190
|
}, "strip", z.ZodTypeAny, {
|
|
40191
|
+
type: "pcb_smtpad";
|
|
39991
40192
|
x: number;
|
|
39992
40193
|
y: number;
|
|
39993
|
-
type: "pcb_smtpad";
|
|
39994
40194
|
width: number;
|
|
39995
40195
|
height: number;
|
|
39996
40196
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40006,9 +40206,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40006
40206
|
port_hints?: string[] | undefined;
|
|
40007
40207
|
pcb_port_id?: string | undefined;
|
|
40008
40208
|
}, {
|
|
40209
|
+
type: "pcb_smtpad";
|
|
40009
40210
|
x: string | number;
|
|
40010
40211
|
y: string | number;
|
|
40011
|
-
type: "pcb_smtpad";
|
|
40012
40212
|
width: number;
|
|
40013
40213
|
height: number;
|
|
40014
40214
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40051,9 +40251,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40051
40251
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
40052
40252
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
40053
40253
|
}, "strip", z.ZodTypeAny, {
|
|
40254
|
+
type: "pcb_smtpad";
|
|
40054
40255
|
x: number;
|
|
40055
40256
|
y: number;
|
|
40056
|
-
type: "pcb_smtpad";
|
|
40057
40257
|
width: number;
|
|
40058
40258
|
height: number;
|
|
40059
40259
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40068,9 +40268,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40068
40268
|
port_hints?: string[] | undefined;
|
|
40069
40269
|
pcb_port_id?: string | undefined;
|
|
40070
40270
|
}, {
|
|
40271
|
+
type: "pcb_smtpad";
|
|
40071
40272
|
x: string | number;
|
|
40072
40273
|
y: string | number;
|
|
40073
|
-
type: "pcb_smtpad";
|
|
40074
40274
|
width: number;
|
|
40075
40275
|
height: number;
|
|
40076
40276
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40171,9 +40371,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40171
40371
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40172
40372
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40173
40373
|
}, "strip", z.ZodTypeAny, {
|
|
40374
|
+
type: "pcb_solder_paste";
|
|
40174
40375
|
x: number;
|
|
40175
40376
|
y: number;
|
|
40176
|
-
type: "pcb_solder_paste";
|
|
40177
40377
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40178
40378
|
shape: "circle";
|
|
40179
40379
|
radius: number;
|
|
@@ -40183,9 +40383,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40183
40383
|
pcb_group_id?: string | undefined;
|
|
40184
40384
|
pcb_smtpad_id?: string | undefined;
|
|
40185
40385
|
}, {
|
|
40386
|
+
type: "pcb_solder_paste";
|
|
40186
40387
|
x: string | number;
|
|
40187
40388
|
y: string | number;
|
|
40188
|
-
type: "pcb_solder_paste";
|
|
40189
40389
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
40190
40390
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
40191
40391
|
};
|
|
@@ -40218,9 +40418,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40218
40418
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40219
40419
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40220
40420
|
}, "strip", z.ZodTypeAny, {
|
|
40421
|
+
type: "pcb_solder_paste";
|
|
40221
40422
|
x: number;
|
|
40222
40423
|
y: number;
|
|
40223
|
-
type: "pcb_solder_paste";
|
|
40224
40424
|
width: number;
|
|
40225
40425
|
height: number;
|
|
40226
40426
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40231,9 +40431,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40231
40431
|
pcb_group_id?: string | undefined;
|
|
40232
40432
|
pcb_smtpad_id?: string | undefined;
|
|
40233
40433
|
}, {
|
|
40434
|
+
type: "pcb_solder_paste";
|
|
40234
40435
|
x: string | number;
|
|
40235
40436
|
y: string | number;
|
|
40236
|
-
type: "pcb_solder_paste";
|
|
40237
40437
|
width: number;
|
|
40238
40438
|
height: number;
|
|
40239
40439
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40268,9 +40468,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40268
40468
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40269
40469
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40270
40470
|
}, "strip", z.ZodTypeAny, {
|
|
40471
|
+
type: "pcb_solder_paste";
|
|
40271
40472
|
x: number;
|
|
40272
40473
|
y: number;
|
|
40273
|
-
type: "pcb_solder_paste";
|
|
40274
40474
|
width: number;
|
|
40275
40475
|
height: number;
|
|
40276
40476
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40282,9 +40482,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40282
40482
|
pcb_group_id?: string | undefined;
|
|
40283
40483
|
pcb_smtpad_id?: string | undefined;
|
|
40284
40484
|
}, {
|
|
40485
|
+
type: "pcb_solder_paste";
|
|
40285
40486
|
x: string | number;
|
|
40286
40487
|
y: string | number;
|
|
40287
|
-
type: "pcb_solder_paste";
|
|
40288
40488
|
width: number;
|
|
40289
40489
|
height: number;
|
|
40290
40490
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40320,9 +40520,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40320
40520
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40321
40521
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40322
40522
|
}, "strip", z.ZodTypeAny, {
|
|
40523
|
+
type: "pcb_solder_paste";
|
|
40323
40524
|
x: number;
|
|
40324
40525
|
y: number;
|
|
40325
|
-
type: "pcb_solder_paste";
|
|
40326
40526
|
width: number;
|
|
40327
40527
|
height: number;
|
|
40328
40528
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40334,9 +40534,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40334
40534
|
pcb_group_id?: string | undefined;
|
|
40335
40535
|
pcb_smtpad_id?: string | undefined;
|
|
40336
40536
|
}, {
|
|
40537
|
+
type: "pcb_solder_paste";
|
|
40337
40538
|
x: string | number;
|
|
40338
40539
|
y: string | number;
|
|
40339
|
-
type: "pcb_solder_paste";
|
|
40340
40540
|
width: number;
|
|
40341
40541
|
height: number;
|
|
40342
40542
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -40371,9 +40571,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40371
40571
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
40372
40572
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
40373
40573
|
}, "strip", z.ZodTypeAny, {
|
|
40574
|
+
type: "pcb_solder_paste";
|
|
40374
40575
|
x: number;
|
|
40375
40576
|
y: number;
|
|
40376
|
-
type: "pcb_solder_paste";
|
|
40377
40577
|
width: number;
|
|
40378
40578
|
height: number;
|
|
40379
40579
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -40384,9 +40584,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40384
40584
|
pcb_group_id?: string | undefined;
|
|
40385
40585
|
pcb_smtpad_id?: string | undefined;
|
|
40386
40586
|
}, {
|
|
40587
|
+
type: "pcb_solder_paste";
|
|
40387
40588
|
x: string | number;
|
|
40388
40589
|
y: string | number;
|
|
40389
|
-
type: "pcb_solder_paste";
|
|
40390
40590
|
width: number;
|
|
40391
40591
|
height: number;
|
|
40392
40592
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -42532,9 +42732,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
42532
42732
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
42533
42733
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
42534
42734
|
}, "strip", z.ZodTypeAny, {
|
|
42735
|
+
type: "pcb_breakout_point";
|
|
42535
42736
|
x: number;
|
|
42536
42737
|
y: number;
|
|
42537
|
-
type: "pcb_breakout_point";
|
|
42538
42738
|
pcb_group_id: string;
|
|
42539
42739
|
pcb_breakout_point_id: string;
|
|
42540
42740
|
subcircuit_id?: string | undefined;
|
|
@@ -42542,9 +42742,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
42542
42742
|
source_trace_id?: string | undefined;
|
|
42543
42743
|
source_net_id?: string | undefined;
|
|
42544
42744
|
}, {
|
|
42745
|
+
type: "pcb_breakout_point";
|
|
42545
42746
|
x: string | number;
|
|
42546
42747
|
y: string | number;
|
|
42547
|
-
type: "pcb_breakout_point";
|
|
42548
42748
|
pcb_group_id: string;
|
|
42549
42749
|
subcircuit_id?: string | undefined;
|
|
42550
42750
|
source_port_id?: string | undefined;
|
|
@@ -43539,9 +43739,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
43539
43739
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
43540
43740
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
43541
43741
|
}, "strip", z.ZodTypeAny, {
|
|
43742
|
+
type: "schematic_box";
|
|
43542
43743
|
x: number;
|
|
43543
43744
|
y: number;
|
|
43544
|
-
type: "schematic_box";
|
|
43545
43745
|
width: number;
|
|
43546
43746
|
height: number;
|
|
43547
43747
|
is_dashed: boolean;
|
|
@@ -43549,9 +43749,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
43549
43749
|
schematic_component_id?: string | undefined;
|
|
43550
43750
|
schematic_symbol_id?: string | undefined;
|
|
43551
43751
|
}, {
|
|
43752
|
+
type: "schematic_box";
|
|
43552
43753
|
x: string | number;
|
|
43553
43754
|
y: string | number;
|
|
43554
|
-
type: "schematic_box";
|
|
43555
43755
|
width: string | number;
|
|
43556
43756
|
height: string | number;
|
|
43557
43757
|
subcircuit_id?: string | undefined;
|
|
@@ -51852,6 +52052,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51852
52052
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
51853
52053
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51854
52054
|
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
52055
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
52056
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
52057
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
52058
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
52059
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51855
52060
|
}, "strip", z.ZodTypeAny, {
|
|
51856
52061
|
type: "simulation_voltage_source";
|
|
51857
52062
|
simulation_voltage_source_id: string;
|
|
@@ -51866,6 +52071,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51866
52071
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
51867
52072
|
phase?: number | undefined;
|
|
51868
52073
|
duty_cycle?: number | undefined;
|
|
52074
|
+
pulse_delay?: number | undefined;
|
|
52075
|
+
rise_time?: number | undefined;
|
|
52076
|
+
fall_time?: number | undefined;
|
|
52077
|
+
pulse_width?: number | undefined;
|
|
52078
|
+
period?: number | undefined;
|
|
51869
52079
|
}, {
|
|
51870
52080
|
type: "simulation_voltage_source";
|
|
51871
52081
|
is_dc_source: false;
|
|
@@ -51880,6 +52090,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51880
52090
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
51881
52091
|
phase?: string | number | undefined;
|
|
51882
52092
|
duty_cycle?: string | number | undefined;
|
|
52093
|
+
pulse_delay?: string | number | undefined;
|
|
52094
|
+
rise_time?: string | number | undefined;
|
|
52095
|
+
fall_time?: string | number | undefined;
|
|
52096
|
+
pulse_width?: string | number | undefined;
|
|
52097
|
+
period?: string | number | undefined;
|
|
51883
52098
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
51884
52099
|
type: z.ZodLiteral<"simulation_current_source">;
|
|
51885
52100
|
simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -51957,6 +52172,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51957
52172
|
time_per_step: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51958
52173
|
start_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51959
52174
|
end_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
52175
|
+
spice_options: z.ZodOptional<z.ZodObject<{
|
|
52176
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
52177
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
52178
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
52179
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
52180
|
+
}, "strip", z.ZodTypeAny, {
|
|
52181
|
+
method?: "trap" | "gear" | undefined;
|
|
52182
|
+
reltol?: string | number | undefined;
|
|
52183
|
+
abstol?: string | number | undefined;
|
|
52184
|
+
vntol?: string | number | undefined;
|
|
52185
|
+
}, {
|
|
52186
|
+
method?: "trap" | "gear" | undefined;
|
|
52187
|
+
reltol?: string | number | undefined;
|
|
52188
|
+
abstol?: string | number | undefined;
|
|
52189
|
+
vntol?: string | number | undefined;
|
|
52190
|
+
}>>;
|
|
51960
52191
|
}, "strip", z.ZodTypeAny, {
|
|
51961
52192
|
type: "simulation_experiment";
|
|
51962
52193
|
name: string;
|
|
@@ -51965,6 +52196,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51965
52196
|
time_per_step?: number | undefined;
|
|
51966
52197
|
start_time_ms?: number | undefined;
|
|
51967
52198
|
end_time_ms?: number | undefined;
|
|
52199
|
+
spice_options?: {
|
|
52200
|
+
method?: "trap" | "gear" | undefined;
|
|
52201
|
+
reltol?: string | number | undefined;
|
|
52202
|
+
abstol?: string | number | undefined;
|
|
52203
|
+
vntol?: string | number | undefined;
|
|
52204
|
+
} | undefined;
|
|
51968
52205
|
}, {
|
|
51969
52206
|
type: "simulation_experiment";
|
|
51970
52207
|
name: string;
|
|
@@ -51973,6 +52210,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51973
52210
|
time_per_step?: string | number | undefined;
|
|
51974
52211
|
start_time_ms?: string | number | undefined;
|
|
51975
52212
|
end_time_ms?: string | number | undefined;
|
|
52213
|
+
spice_options?: {
|
|
52214
|
+
method?: "trap" | "gear" | undefined;
|
|
52215
|
+
reltol?: string | number | undefined;
|
|
52216
|
+
abstol?: string | number | undefined;
|
|
52217
|
+
vntol?: string | number | undefined;
|
|
52218
|
+
} | undefined;
|
|
51976
52219
|
}>, z.ZodObject<{
|
|
51977
52220
|
type: z.ZodLiteral<"simulation_transient_voltage_graph">;
|
|
51978
52221
|
simulation_transient_voltage_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -52047,6 +52290,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52047
52290
|
reference_input_source_net_id: z.ZodOptional<z.ZodString>;
|
|
52048
52291
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52049
52292
|
color: z.ZodOptional<z.ZodString>;
|
|
52293
|
+
display_options: z.ZodOptional<z.ZodObject<{
|
|
52294
|
+
label: z.ZodOptional<z.ZodString>;
|
|
52295
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
52296
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
52297
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
52298
|
+
}, "strip", z.ZodTypeAny, {
|
|
52299
|
+
center?: number | undefined;
|
|
52300
|
+
label?: string | undefined;
|
|
52301
|
+
offset_divs?: number | undefined;
|
|
52302
|
+
units_per_div?: number | undefined;
|
|
52303
|
+
}, {
|
|
52304
|
+
center?: number | undefined;
|
|
52305
|
+
label?: string | undefined;
|
|
52306
|
+
offset_divs?: number | undefined;
|
|
52307
|
+
units_per_div?: number | undefined;
|
|
52308
|
+
}>>;
|
|
52050
52309
|
}, "strip", z.ZodTypeAny, {
|
|
52051
52310
|
type: "simulation_voltage_probe";
|
|
52052
52311
|
simulation_voltage_probe_id: string;
|
|
@@ -52058,6 +52317,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52058
52317
|
signal_input_source_net_id?: string | undefined;
|
|
52059
52318
|
reference_input_source_port_id?: string | undefined;
|
|
52060
52319
|
reference_input_source_net_id?: string | undefined;
|
|
52320
|
+
display_options?: {
|
|
52321
|
+
center?: number | undefined;
|
|
52322
|
+
label?: string | undefined;
|
|
52323
|
+
offset_divs?: number | undefined;
|
|
52324
|
+
units_per_div?: number | undefined;
|
|
52325
|
+
} | undefined;
|
|
52061
52326
|
}, {
|
|
52062
52327
|
type: "simulation_voltage_probe";
|
|
52063
52328
|
name?: string | undefined;
|
|
@@ -52069,6 +52334,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52069
52334
|
signal_input_source_net_id?: string | undefined;
|
|
52070
52335
|
reference_input_source_port_id?: string | undefined;
|
|
52071
52336
|
reference_input_source_net_id?: string | undefined;
|
|
52337
|
+
display_options?: {
|
|
52338
|
+
center?: number | undefined;
|
|
52339
|
+
label?: string | undefined;
|
|
52340
|
+
offset_divs?: number | undefined;
|
|
52341
|
+
units_per_div?: number | undefined;
|
|
52342
|
+
} | undefined;
|
|
52072
52343
|
}>, {
|
|
52073
52344
|
type: "simulation_voltage_probe";
|
|
52074
52345
|
simulation_voltage_probe_id: string;
|
|
@@ -52080,6 +52351,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52080
52351
|
signal_input_source_net_id?: string | undefined;
|
|
52081
52352
|
reference_input_source_port_id?: string | undefined;
|
|
52082
52353
|
reference_input_source_net_id?: string | undefined;
|
|
52354
|
+
display_options?: {
|
|
52355
|
+
center?: number | undefined;
|
|
52356
|
+
label?: string | undefined;
|
|
52357
|
+
offset_divs?: number | undefined;
|
|
52358
|
+
units_per_div?: number | undefined;
|
|
52359
|
+
} | undefined;
|
|
52083
52360
|
}, {
|
|
52084
52361
|
type: "simulation_voltage_probe";
|
|
52085
52362
|
name?: string | undefined;
|
|
@@ -52091,6 +52368,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52091
52368
|
signal_input_source_net_id?: string | undefined;
|
|
52092
52369
|
reference_input_source_port_id?: string | undefined;
|
|
52093
52370
|
reference_input_source_net_id?: string | undefined;
|
|
52371
|
+
display_options?: {
|
|
52372
|
+
center?: number | undefined;
|
|
52373
|
+
label?: string | undefined;
|
|
52374
|
+
offset_divs?: number | undefined;
|
|
52375
|
+
units_per_div?: number | undefined;
|
|
52376
|
+
} | undefined;
|
|
52094
52377
|
}>, z.ZodObject<{
|
|
52095
52378
|
message: z.ZodString;
|
|
52096
52379
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -53541,6 +53824,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53541
53824
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
53542
53825
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53543
53826
|
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
53827
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53828
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53829
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53830
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53831
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
53544
53832
|
}, "strip", z.ZodTypeAny, {
|
|
53545
53833
|
type: "source_component";
|
|
53546
53834
|
name: string;
|
|
@@ -53554,6 +53842,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53554
53842
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
53555
53843
|
phase?: number | undefined;
|
|
53556
53844
|
duty_cycle?: number | undefined;
|
|
53845
|
+
pulse_delay?: number | undefined;
|
|
53846
|
+
rise_time?: number | undefined;
|
|
53847
|
+
fall_time?: number | undefined;
|
|
53848
|
+
pulse_width?: number | undefined;
|
|
53849
|
+
period?: number | undefined;
|
|
53557
53850
|
manufacturer_part_number?: string | undefined;
|
|
53558
53851
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53559
53852
|
display_value?: string | undefined;
|
|
@@ -53573,6 +53866,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53573
53866
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
53574
53867
|
phase?: string | number | undefined;
|
|
53575
53868
|
duty_cycle?: number | undefined;
|
|
53869
|
+
pulse_delay?: string | number | undefined;
|
|
53870
|
+
rise_time?: string | number | undefined;
|
|
53871
|
+
fall_time?: string | number | undefined;
|
|
53872
|
+
pulse_width?: string | number | undefined;
|
|
53873
|
+
period?: string | number | undefined;
|
|
53576
53874
|
manufacturer_part_number?: string | undefined;
|
|
53577
53875
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
53578
53876
|
display_value?: string | undefined;
|
|
@@ -56807,9 +57105,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56807
57105
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56808
57106
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56809
57107
|
}, "strip", z.ZodTypeAny, {
|
|
57108
|
+
type: "pcb_hole";
|
|
56810
57109
|
x: number;
|
|
56811
57110
|
y: number;
|
|
56812
|
-
type: "pcb_hole";
|
|
56813
57111
|
pcb_hole_id: string;
|
|
56814
57112
|
hole_shape: "circle" | "square";
|
|
56815
57113
|
hole_diameter: number;
|
|
@@ -56819,9 +57117,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56819
57117
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56820
57118
|
soldermask_margin?: number | undefined;
|
|
56821
57119
|
}, {
|
|
57120
|
+
type: "pcb_hole";
|
|
56822
57121
|
x: string | number;
|
|
56823
57122
|
y: string | number;
|
|
56824
|
-
type: "pcb_hole";
|
|
56825
57123
|
hole_shape: "circle" | "square";
|
|
56826
57124
|
hole_diameter: number;
|
|
56827
57125
|
pcb_component_id?: string | undefined;
|
|
@@ -56844,9 +57142,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56844
57142
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56845
57143
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56846
57144
|
}, "strip", z.ZodTypeAny, {
|
|
57145
|
+
type: "pcb_hole";
|
|
56847
57146
|
x: number;
|
|
56848
57147
|
y: number;
|
|
56849
|
-
type: "pcb_hole";
|
|
56850
57148
|
pcb_hole_id: string;
|
|
56851
57149
|
hole_shape: "oval";
|
|
56852
57150
|
hole_width: number;
|
|
@@ -56857,9 +57155,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56857
57155
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56858
57156
|
soldermask_margin?: number | undefined;
|
|
56859
57157
|
}, {
|
|
57158
|
+
type: "pcb_hole";
|
|
56860
57159
|
x: string | number;
|
|
56861
57160
|
y: string | number;
|
|
56862
|
-
type: "pcb_hole";
|
|
56863
57161
|
hole_shape: "oval";
|
|
56864
57162
|
hole_width: number;
|
|
56865
57163
|
hole_height: number;
|
|
@@ -56883,9 +57181,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56883
57181
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56884
57182
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56885
57183
|
}, "strip", z.ZodTypeAny, {
|
|
57184
|
+
type: "pcb_hole";
|
|
56886
57185
|
x: number;
|
|
56887
57186
|
y: number;
|
|
56888
|
-
type: "pcb_hole";
|
|
56889
57187
|
pcb_hole_id: string;
|
|
56890
57188
|
hole_shape: "pill";
|
|
56891
57189
|
hole_width: number;
|
|
@@ -56896,9 +57194,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56896
57194
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56897
57195
|
soldermask_margin?: number | undefined;
|
|
56898
57196
|
}, {
|
|
57197
|
+
type: "pcb_hole";
|
|
56899
57198
|
x: string | number;
|
|
56900
57199
|
y: string | number;
|
|
56901
|
-
type: "pcb_hole";
|
|
56902
57200
|
hole_shape: "pill";
|
|
56903
57201
|
hole_width: number;
|
|
56904
57202
|
hole_height: number;
|
|
@@ -56923,9 +57221,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56923
57221
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56924
57222
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56925
57223
|
}, "strip", z.ZodTypeAny, {
|
|
57224
|
+
type: "pcb_hole";
|
|
56926
57225
|
x: number;
|
|
56927
57226
|
y: number;
|
|
56928
|
-
type: "pcb_hole";
|
|
56929
57227
|
pcb_hole_id: string;
|
|
56930
57228
|
hole_shape: "rotated_pill";
|
|
56931
57229
|
hole_width: number;
|
|
@@ -56937,9 +57235,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56937
57235
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56938
57236
|
soldermask_margin?: number | undefined;
|
|
56939
57237
|
}, {
|
|
57238
|
+
type: "pcb_hole";
|
|
56940
57239
|
x: string | number;
|
|
56941
57240
|
y: string | number;
|
|
56942
|
-
type: "pcb_hole";
|
|
56943
57241
|
hole_shape: "rotated_pill";
|
|
56944
57242
|
hole_width: number;
|
|
56945
57243
|
hole_height: number;
|
|
@@ -56963,9 +57261,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56963
57261
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
56964
57262
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
56965
57263
|
}, "strip", z.ZodTypeAny, {
|
|
57264
|
+
type: "pcb_hole";
|
|
56966
57265
|
x: number;
|
|
56967
57266
|
y: number;
|
|
56968
|
-
type: "pcb_hole";
|
|
56969
57267
|
pcb_hole_id: string;
|
|
56970
57268
|
hole_shape: "circle";
|
|
56971
57269
|
hole_diameter: number;
|
|
@@ -56975,9 +57273,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56975
57273
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
56976
57274
|
soldermask_margin?: number | undefined;
|
|
56977
57275
|
}, {
|
|
57276
|
+
type: "pcb_hole";
|
|
56978
57277
|
x: string | number;
|
|
56979
57278
|
y: string | number;
|
|
56980
|
-
type: "pcb_hole";
|
|
56981
57279
|
hole_shape: "circle";
|
|
56982
57280
|
hole_diameter: number;
|
|
56983
57281
|
pcb_component_id?: string | undefined;
|
|
@@ -57000,9 +57298,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57000
57298
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
57001
57299
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57002
57300
|
}, "strip", z.ZodTypeAny, {
|
|
57301
|
+
type: "pcb_hole";
|
|
57003
57302
|
x: number;
|
|
57004
57303
|
y: number;
|
|
57005
|
-
type: "pcb_hole";
|
|
57006
57304
|
pcb_hole_id: string;
|
|
57007
57305
|
hole_shape: "rect";
|
|
57008
57306
|
hole_width: number;
|
|
@@ -57013,9 +57311,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57013
57311
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
57014
57312
|
soldermask_margin?: number | undefined;
|
|
57015
57313
|
}, {
|
|
57314
|
+
type: "pcb_hole";
|
|
57016
57315
|
x: string | number;
|
|
57017
57316
|
y: string | number;
|
|
57018
|
-
type: "pcb_hole";
|
|
57019
57317
|
hole_shape: "rect";
|
|
57020
57318
|
hole_width: number;
|
|
57021
57319
|
hole_height: number;
|
|
@@ -57245,9 +57543,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57245
57543
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57246
57544
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57247
57545
|
}, "strip", z.ZodTypeAny, {
|
|
57546
|
+
type: "pcb_plated_hole";
|
|
57248
57547
|
x: number;
|
|
57249
57548
|
y: number;
|
|
57250
|
-
type: "pcb_plated_hole";
|
|
57251
57549
|
shape: "circle";
|
|
57252
57550
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57253
57551
|
hole_diameter: number;
|
|
@@ -57261,9 +57559,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57261
57559
|
port_hints?: string[] | undefined;
|
|
57262
57560
|
pcb_port_id?: string | undefined;
|
|
57263
57561
|
}, {
|
|
57562
|
+
type: "pcb_plated_hole";
|
|
57264
57563
|
x: string | number;
|
|
57265
57564
|
y: string | number;
|
|
57266
|
-
type: "pcb_plated_hole";
|
|
57267
57565
|
shape: "circle";
|
|
57268
57566
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57269
57567
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57306,9 +57604,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57306
57604
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57307
57605
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57308
57606
|
}, "strip", z.ZodTypeAny, {
|
|
57607
|
+
type: "pcb_plated_hole";
|
|
57309
57608
|
x: number;
|
|
57310
57609
|
y: number;
|
|
57311
|
-
type: "pcb_plated_hole";
|
|
57312
57610
|
shape: "oval" | "pill";
|
|
57313
57611
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57314
57612
|
hole_width: number;
|
|
@@ -57325,9 +57623,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57325
57623
|
port_hints?: string[] | undefined;
|
|
57326
57624
|
pcb_port_id?: string | undefined;
|
|
57327
57625
|
}, {
|
|
57626
|
+
type: "pcb_plated_hole";
|
|
57328
57627
|
x: string | number;
|
|
57329
57628
|
y: string | number;
|
|
57330
|
-
type: "pcb_plated_hole";
|
|
57331
57629
|
shape: "oval" | "pill";
|
|
57332
57630
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57333
57631
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57377,9 +57675,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57377
57675
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57378
57676
|
rect_ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57379
57677
|
}, "strip", z.ZodTypeAny, {
|
|
57678
|
+
type: "pcb_plated_hole";
|
|
57380
57679
|
x: number;
|
|
57381
57680
|
y: number;
|
|
57382
|
-
type: "pcb_plated_hole";
|
|
57383
57681
|
shape: "circular_hole_with_rect_pad";
|
|
57384
57682
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57385
57683
|
hole_shape: "circle";
|
|
@@ -57400,9 +57698,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57400
57698
|
rect_border_radius?: number | undefined;
|
|
57401
57699
|
rect_ccw_rotation?: number | undefined;
|
|
57402
57700
|
}, {
|
|
57701
|
+
type: "pcb_plated_hole";
|
|
57403
57702
|
x: string | number;
|
|
57404
57703
|
y: string | number;
|
|
57405
|
-
type: "pcb_plated_hole";
|
|
57406
57704
|
shape: "circular_hole_with_rect_pad";
|
|
57407
57705
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57408
57706
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57456,9 +57754,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57456
57754
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57457
57755
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57458
57756
|
}, "strip", z.ZodTypeAny, {
|
|
57757
|
+
type: "pcb_plated_hole";
|
|
57459
57758
|
x: number;
|
|
57460
57759
|
y: number;
|
|
57461
|
-
type: "pcb_plated_hole";
|
|
57462
57760
|
shape: "pill_hole_with_rect_pad";
|
|
57463
57761
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57464
57762
|
hole_shape: "pill";
|
|
@@ -57479,9 +57777,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57479
57777
|
pcb_port_id?: string | undefined;
|
|
57480
57778
|
rect_border_radius?: number | undefined;
|
|
57481
57779
|
}, {
|
|
57780
|
+
type: "pcb_plated_hole";
|
|
57482
57781
|
x: string | number;
|
|
57483
57782
|
y: string | number;
|
|
57484
|
-
type: "pcb_plated_hole";
|
|
57485
57783
|
shape: "pill_hole_with_rect_pad";
|
|
57486
57784
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57487
57785
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57537,9 +57835,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57537
57835
|
pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57538
57836
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57539
57837
|
}, "strip", z.ZodTypeAny, {
|
|
57838
|
+
type: "pcb_plated_hole";
|
|
57540
57839
|
x: number;
|
|
57541
57840
|
y: number;
|
|
57542
|
-
type: "pcb_plated_hole";
|
|
57543
57841
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
57544
57842
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57545
57843
|
hole_shape: "rotated_pill";
|
|
@@ -57562,9 +57860,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57562
57860
|
pcb_port_id?: string | undefined;
|
|
57563
57861
|
rect_border_radius?: number | undefined;
|
|
57564
57862
|
}, {
|
|
57863
|
+
type: "pcb_plated_hole";
|
|
57565
57864
|
x: string | number;
|
|
57566
57865
|
y: string | number;
|
|
57567
|
-
type: "pcb_plated_hole";
|
|
57568
57866
|
shape: "rotated_pill_hole_with_rect_pad";
|
|
57569
57867
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57570
57868
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57628,9 +57926,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57628
57926
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
57629
57927
|
ccw_rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57630
57928
|
}, "strip", z.ZodTypeAny, {
|
|
57929
|
+
type: "pcb_plated_hole";
|
|
57631
57930
|
x: number;
|
|
57632
57931
|
y: number;
|
|
57633
|
-
type: "pcb_plated_hole";
|
|
57634
57932
|
shape: "hole_with_polygon_pad";
|
|
57635
57933
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57636
57934
|
hole_shape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
@@ -57653,9 +57951,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57653
57951
|
port_hints?: string[] | undefined;
|
|
57654
57952
|
pcb_port_id?: string | undefined;
|
|
57655
57953
|
}, {
|
|
57954
|
+
type: "pcb_plated_hole";
|
|
57656
57955
|
x: string | number;
|
|
57657
57956
|
y: string | number;
|
|
57658
|
-
type: "pcb_plated_hole";
|
|
57659
57957
|
shape: "hole_with_polygon_pad";
|
|
57660
57958
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57661
57959
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -57792,9 +58090,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57792
58090
|
}>, "many">;
|
|
57793
58091
|
is_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
57794
58092
|
}, "strip", z.ZodTypeAny, {
|
|
58093
|
+
type: "pcb_port";
|
|
57795
58094
|
x: number;
|
|
57796
58095
|
y: number;
|
|
57797
|
-
type: "pcb_port";
|
|
57798
58096
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
57799
58097
|
pcb_port_id: string;
|
|
57800
58098
|
source_port_id: string;
|
|
@@ -57803,9 +58101,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57803
58101
|
pcb_group_id?: string | undefined;
|
|
57804
58102
|
is_board_pinout?: boolean | undefined;
|
|
57805
58103
|
}, {
|
|
58104
|
+
type: "pcb_port";
|
|
57806
58105
|
x: string | number;
|
|
57807
58106
|
y: string | number;
|
|
57808
|
-
type: "pcb_port";
|
|
57809
58107
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
57810
58108
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
57811
58109
|
})[];
|
|
@@ -58267,9 +58565,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58267
58565
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
58268
58566
|
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
58269
58567
|
}, "strip", z.ZodTypeAny, {
|
|
58568
|
+
type: "pcb_via";
|
|
58270
58569
|
x: number;
|
|
58271
58570
|
y: number;
|
|
58272
|
-
type: "pcb_via";
|
|
58273
58571
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[];
|
|
58274
58572
|
hole_diameter: number;
|
|
58275
58573
|
outer_diameter: number;
|
|
@@ -58284,9 +58582,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58284
58582
|
net_assigned?: boolean | undefined;
|
|
58285
58583
|
is_tented?: boolean | undefined;
|
|
58286
58584
|
}, {
|
|
58585
|
+
type: "pcb_via";
|
|
58287
58586
|
x: string | number;
|
|
58288
58587
|
y: string | number;
|
|
58289
|
-
type: "pcb_via";
|
|
58290
58588
|
layers: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
58291
58589
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58292
58590
|
})[];
|
|
@@ -58330,9 +58628,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58330
58628
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
58331
58629
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
58332
58630
|
}, "strip", z.ZodTypeAny, {
|
|
58631
|
+
type: "pcb_smtpad";
|
|
58333
58632
|
x: number;
|
|
58334
58633
|
y: number;
|
|
58335
|
-
type: "pcb_smtpad";
|
|
58336
58634
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58337
58635
|
shape: "circle";
|
|
58338
58636
|
pcb_smtpad_id: string;
|
|
@@ -58345,9 +58643,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58345
58643
|
port_hints?: string[] | undefined;
|
|
58346
58644
|
pcb_port_id?: string | undefined;
|
|
58347
58645
|
}, {
|
|
58646
|
+
type: "pcb_smtpad";
|
|
58348
58647
|
x: string | number;
|
|
58349
58648
|
y: string | number;
|
|
58350
|
-
type: "pcb_smtpad";
|
|
58351
58649
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
58352
58650
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58353
58651
|
};
|
|
@@ -58392,9 +58690,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58392
58690
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
58393
58691
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
58394
58692
|
}, "strip", z.ZodTypeAny, {
|
|
58693
|
+
type: "pcb_smtpad";
|
|
58395
58694
|
x: number;
|
|
58396
58695
|
y: number;
|
|
58397
|
-
type: "pcb_smtpad";
|
|
58398
58696
|
width: number;
|
|
58399
58697
|
height: number;
|
|
58400
58698
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58414,9 +58712,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58414
58712
|
soldermask_margin_right?: number | undefined;
|
|
58415
58713
|
soldermask_margin_bottom?: number | undefined;
|
|
58416
58714
|
}, {
|
|
58715
|
+
type: "pcb_smtpad";
|
|
58417
58716
|
x: string | number;
|
|
58418
58717
|
y: string | number;
|
|
58419
|
-
type: "pcb_smtpad";
|
|
58420
58718
|
width: number;
|
|
58421
58719
|
height: number;
|
|
58422
58720
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58469,9 +58767,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58469
58767
|
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
58470
58768
|
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
58471
58769
|
}, "strip", z.ZodTypeAny, {
|
|
58770
|
+
type: "pcb_smtpad";
|
|
58472
58771
|
x: number;
|
|
58473
58772
|
y: number;
|
|
58474
|
-
type: "pcb_smtpad";
|
|
58475
58773
|
width: number;
|
|
58476
58774
|
height: number;
|
|
58477
58775
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58492,9 +58790,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58492
58790
|
soldermask_margin_right?: number | undefined;
|
|
58493
58791
|
soldermask_margin_bottom?: number | undefined;
|
|
58494
58792
|
}, {
|
|
58793
|
+
type: "pcb_smtpad";
|
|
58495
58794
|
x: string | number;
|
|
58496
58795
|
y: string | number;
|
|
58497
|
-
type: "pcb_smtpad";
|
|
58498
58796
|
width: number;
|
|
58499
58797
|
height: number;
|
|
58500
58798
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58543,9 +58841,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58543
58841
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
58544
58842
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
58545
58843
|
}, "strip", z.ZodTypeAny, {
|
|
58844
|
+
type: "pcb_smtpad";
|
|
58546
58845
|
x: number;
|
|
58547
58846
|
y: number;
|
|
58548
|
-
type: "pcb_smtpad";
|
|
58549
58847
|
width: number;
|
|
58550
58848
|
height: number;
|
|
58551
58849
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58561,9 +58859,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58561
58859
|
port_hints?: string[] | undefined;
|
|
58562
58860
|
pcb_port_id?: string | undefined;
|
|
58563
58861
|
}, {
|
|
58862
|
+
type: "pcb_smtpad";
|
|
58564
58863
|
x: string | number;
|
|
58565
58864
|
y: string | number;
|
|
58566
|
-
type: "pcb_smtpad";
|
|
58567
58865
|
width: number;
|
|
58568
58866
|
height: number;
|
|
58569
58867
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58606,9 +58904,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58606
58904
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
58607
58905
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
58608
58906
|
}, "strip", z.ZodTypeAny, {
|
|
58907
|
+
type: "pcb_smtpad";
|
|
58609
58908
|
x: number;
|
|
58610
58909
|
y: number;
|
|
58611
|
-
type: "pcb_smtpad";
|
|
58612
58910
|
width: number;
|
|
58613
58911
|
height: number;
|
|
58614
58912
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58623,9 +58921,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58623
58921
|
port_hints?: string[] | undefined;
|
|
58624
58922
|
pcb_port_id?: string | undefined;
|
|
58625
58923
|
}, {
|
|
58924
|
+
type: "pcb_smtpad";
|
|
58626
58925
|
x: string | number;
|
|
58627
58926
|
y: string | number;
|
|
58628
|
-
type: "pcb_smtpad";
|
|
58629
58927
|
width: number;
|
|
58630
58928
|
height: number;
|
|
58631
58929
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58726,9 +59024,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58726
59024
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58727
59025
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58728
59026
|
}, "strip", z.ZodTypeAny, {
|
|
59027
|
+
type: "pcb_solder_paste";
|
|
58729
59028
|
x: number;
|
|
58730
59029
|
y: number;
|
|
58731
|
-
type: "pcb_solder_paste";
|
|
58732
59030
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58733
59031
|
shape: "circle";
|
|
58734
59032
|
radius: number;
|
|
@@ -58738,9 +59036,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58738
59036
|
pcb_group_id?: string | undefined;
|
|
58739
59037
|
pcb_smtpad_id?: string | undefined;
|
|
58740
59038
|
}, {
|
|
59039
|
+
type: "pcb_solder_paste";
|
|
58741
59040
|
x: string | number;
|
|
58742
59041
|
y: string | number;
|
|
58743
|
-
type: "pcb_solder_paste";
|
|
58744
59042
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
58745
59043
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
58746
59044
|
};
|
|
@@ -58773,9 +59071,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58773
59071
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58774
59072
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58775
59073
|
}, "strip", z.ZodTypeAny, {
|
|
59074
|
+
type: "pcb_solder_paste";
|
|
58776
59075
|
x: number;
|
|
58777
59076
|
y: number;
|
|
58778
|
-
type: "pcb_solder_paste";
|
|
58779
59077
|
width: number;
|
|
58780
59078
|
height: number;
|
|
58781
59079
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58786,9 +59084,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58786
59084
|
pcb_group_id?: string | undefined;
|
|
58787
59085
|
pcb_smtpad_id?: string | undefined;
|
|
58788
59086
|
}, {
|
|
59087
|
+
type: "pcb_solder_paste";
|
|
58789
59088
|
x: string | number;
|
|
58790
59089
|
y: string | number;
|
|
58791
|
-
type: "pcb_solder_paste";
|
|
58792
59090
|
width: number;
|
|
58793
59091
|
height: number;
|
|
58794
59092
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58823,9 +59121,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58823
59121
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58824
59122
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58825
59123
|
}, "strip", z.ZodTypeAny, {
|
|
59124
|
+
type: "pcb_solder_paste";
|
|
58826
59125
|
x: number;
|
|
58827
59126
|
y: number;
|
|
58828
|
-
type: "pcb_solder_paste";
|
|
58829
59127
|
width: number;
|
|
58830
59128
|
height: number;
|
|
58831
59129
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58837,9 +59135,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58837
59135
|
pcb_group_id?: string | undefined;
|
|
58838
59136
|
pcb_smtpad_id?: string | undefined;
|
|
58839
59137
|
}, {
|
|
59138
|
+
type: "pcb_solder_paste";
|
|
58840
59139
|
x: string | number;
|
|
58841
59140
|
y: string | number;
|
|
58842
|
-
type: "pcb_solder_paste";
|
|
58843
59141
|
width: number;
|
|
58844
59142
|
height: number;
|
|
58845
59143
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58875,9 +59173,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58875
59173
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58876
59174
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58877
59175
|
}, "strip", z.ZodTypeAny, {
|
|
59176
|
+
type: "pcb_solder_paste";
|
|
58878
59177
|
x: number;
|
|
58879
59178
|
y: number;
|
|
58880
|
-
type: "pcb_solder_paste";
|
|
58881
59179
|
width: number;
|
|
58882
59180
|
height: number;
|
|
58883
59181
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58889,9 +59187,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58889
59187
|
pcb_group_id?: string | undefined;
|
|
58890
59188
|
pcb_smtpad_id?: string | undefined;
|
|
58891
59189
|
}, {
|
|
59190
|
+
type: "pcb_solder_paste";
|
|
58892
59191
|
x: string | number;
|
|
58893
59192
|
y: string | number;
|
|
58894
|
-
type: "pcb_solder_paste";
|
|
58895
59193
|
width: number;
|
|
58896
59194
|
height: number;
|
|
58897
59195
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -58926,9 +59224,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58926
59224
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
58927
59225
|
pcb_smtpad_id: z.ZodOptional<z.ZodString>;
|
|
58928
59226
|
}, "strip", z.ZodTypeAny, {
|
|
59227
|
+
type: "pcb_solder_paste";
|
|
58929
59228
|
x: number;
|
|
58930
59229
|
y: number;
|
|
58931
|
-
type: "pcb_solder_paste";
|
|
58932
59230
|
width: number;
|
|
58933
59231
|
height: number;
|
|
58934
59232
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -58939,9 +59237,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58939
59237
|
pcb_group_id?: string | undefined;
|
|
58940
59238
|
pcb_smtpad_id?: string | undefined;
|
|
58941
59239
|
}, {
|
|
59240
|
+
type: "pcb_solder_paste";
|
|
58942
59241
|
x: string | number;
|
|
58943
59242
|
y: string | number;
|
|
58944
|
-
type: "pcb_solder_paste";
|
|
58945
59243
|
width: number;
|
|
58946
59244
|
height: number;
|
|
58947
59245
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -61087,9 +61385,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
61087
61385
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
61088
61386
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
61089
61387
|
}, "strip", z.ZodTypeAny, {
|
|
61388
|
+
type: "pcb_breakout_point";
|
|
61090
61389
|
x: number;
|
|
61091
61390
|
y: number;
|
|
61092
|
-
type: "pcb_breakout_point";
|
|
61093
61391
|
pcb_group_id: string;
|
|
61094
61392
|
pcb_breakout_point_id: string;
|
|
61095
61393
|
subcircuit_id?: string | undefined;
|
|
@@ -61097,9 +61395,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
61097
61395
|
source_trace_id?: string | undefined;
|
|
61098
61396
|
source_net_id?: string | undefined;
|
|
61099
61397
|
}, {
|
|
61398
|
+
type: "pcb_breakout_point";
|
|
61100
61399
|
x: string | number;
|
|
61101
61400
|
y: string | number;
|
|
61102
|
-
type: "pcb_breakout_point";
|
|
61103
61401
|
pcb_group_id: string;
|
|
61104
61402
|
subcircuit_id?: string | undefined;
|
|
61105
61403
|
source_port_id?: string | undefined;
|
|
@@ -62094,9 +62392,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62094
62392
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
62095
62393
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
62096
62394
|
}, "strip", z.ZodTypeAny, {
|
|
62395
|
+
type: "schematic_box";
|
|
62097
62396
|
x: number;
|
|
62098
62397
|
y: number;
|
|
62099
|
-
type: "schematic_box";
|
|
62100
62398
|
width: number;
|
|
62101
62399
|
height: number;
|
|
62102
62400
|
is_dashed: boolean;
|
|
@@ -62104,9 +62402,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62104
62402
|
schematic_component_id?: string | undefined;
|
|
62105
62403
|
schematic_symbol_id?: string | undefined;
|
|
62106
62404
|
}, {
|
|
62405
|
+
type: "schematic_box";
|
|
62107
62406
|
x: string | number;
|
|
62108
62407
|
y: string | number;
|
|
62109
|
-
type: "schematic_box";
|
|
62110
62408
|
width: string | number;
|
|
62111
62409
|
height: string | number;
|
|
62112
62410
|
subcircuit_id?: string | undefined;
|
|
@@ -70407,6 +70705,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70407
70705
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
70408
70706
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70409
70707
|
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
70708
|
+
pulse_delay: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70709
|
+
rise_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70710
|
+
fall_time: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70711
|
+
pulse_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70712
|
+
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70410
70713
|
}, "strip", z.ZodTypeAny, {
|
|
70411
70714
|
type: "simulation_voltage_source";
|
|
70412
70715
|
simulation_voltage_source_id: string;
|
|
@@ -70421,6 +70724,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70421
70724
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
70422
70725
|
phase?: number | undefined;
|
|
70423
70726
|
duty_cycle?: number | undefined;
|
|
70727
|
+
pulse_delay?: number | undefined;
|
|
70728
|
+
rise_time?: number | undefined;
|
|
70729
|
+
fall_time?: number | undefined;
|
|
70730
|
+
pulse_width?: number | undefined;
|
|
70731
|
+
period?: number | undefined;
|
|
70424
70732
|
}, {
|
|
70425
70733
|
type: "simulation_voltage_source";
|
|
70426
70734
|
is_dc_source: false;
|
|
@@ -70435,6 +70743,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70435
70743
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
70436
70744
|
phase?: string | number | undefined;
|
|
70437
70745
|
duty_cycle?: string | number | undefined;
|
|
70746
|
+
pulse_delay?: string | number | undefined;
|
|
70747
|
+
rise_time?: string | number | undefined;
|
|
70748
|
+
fall_time?: string | number | undefined;
|
|
70749
|
+
pulse_width?: string | number | undefined;
|
|
70750
|
+
period?: string | number | undefined;
|
|
70438
70751
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
70439
70752
|
type: z.ZodLiteral<"simulation_current_source">;
|
|
70440
70753
|
simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -70512,6 +70825,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70512
70825
|
time_per_step: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70513
70826
|
start_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70514
70827
|
end_time_ms: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
70828
|
+
spice_options: z.ZodOptional<z.ZodObject<{
|
|
70829
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
70830
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
70831
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
70832
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
70833
|
+
}, "strip", z.ZodTypeAny, {
|
|
70834
|
+
method?: "trap" | "gear" | undefined;
|
|
70835
|
+
reltol?: string | number | undefined;
|
|
70836
|
+
abstol?: string | number | undefined;
|
|
70837
|
+
vntol?: string | number | undefined;
|
|
70838
|
+
}, {
|
|
70839
|
+
method?: "trap" | "gear" | undefined;
|
|
70840
|
+
reltol?: string | number | undefined;
|
|
70841
|
+
abstol?: string | number | undefined;
|
|
70842
|
+
vntol?: string | number | undefined;
|
|
70843
|
+
}>>;
|
|
70515
70844
|
}, "strip", z.ZodTypeAny, {
|
|
70516
70845
|
type: "simulation_experiment";
|
|
70517
70846
|
name: string;
|
|
@@ -70520,6 +70849,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70520
70849
|
time_per_step?: number | undefined;
|
|
70521
70850
|
start_time_ms?: number | undefined;
|
|
70522
70851
|
end_time_ms?: number | undefined;
|
|
70852
|
+
spice_options?: {
|
|
70853
|
+
method?: "trap" | "gear" | undefined;
|
|
70854
|
+
reltol?: string | number | undefined;
|
|
70855
|
+
abstol?: string | number | undefined;
|
|
70856
|
+
vntol?: string | number | undefined;
|
|
70857
|
+
} | undefined;
|
|
70523
70858
|
}, {
|
|
70524
70859
|
type: "simulation_experiment";
|
|
70525
70860
|
name: string;
|
|
@@ -70528,6 +70863,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70528
70863
|
time_per_step?: string | number | undefined;
|
|
70529
70864
|
start_time_ms?: string | number | undefined;
|
|
70530
70865
|
end_time_ms?: string | number | undefined;
|
|
70866
|
+
spice_options?: {
|
|
70867
|
+
method?: "trap" | "gear" | undefined;
|
|
70868
|
+
reltol?: string | number | undefined;
|
|
70869
|
+
abstol?: string | number | undefined;
|
|
70870
|
+
vntol?: string | number | undefined;
|
|
70871
|
+
} | undefined;
|
|
70531
70872
|
}>, z.ZodObject<{
|
|
70532
70873
|
type: z.ZodLiteral<"simulation_transient_voltage_graph">;
|
|
70533
70874
|
simulation_transient_voltage_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -70602,6 +70943,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70602
70943
|
reference_input_source_net_id: z.ZodOptional<z.ZodString>;
|
|
70603
70944
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
70604
70945
|
color: z.ZodOptional<z.ZodString>;
|
|
70946
|
+
display_options: z.ZodOptional<z.ZodObject<{
|
|
70947
|
+
label: z.ZodOptional<z.ZodString>;
|
|
70948
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
70949
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
70950
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
70951
|
+
}, "strip", z.ZodTypeAny, {
|
|
70952
|
+
center?: number | undefined;
|
|
70953
|
+
label?: string | undefined;
|
|
70954
|
+
offset_divs?: number | undefined;
|
|
70955
|
+
units_per_div?: number | undefined;
|
|
70956
|
+
}, {
|
|
70957
|
+
center?: number | undefined;
|
|
70958
|
+
label?: string | undefined;
|
|
70959
|
+
offset_divs?: number | undefined;
|
|
70960
|
+
units_per_div?: number | undefined;
|
|
70961
|
+
}>>;
|
|
70605
70962
|
}, "strip", z.ZodTypeAny, {
|
|
70606
70963
|
type: "simulation_voltage_probe";
|
|
70607
70964
|
simulation_voltage_probe_id: string;
|
|
@@ -70613,6 +70970,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70613
70970
|
signal_input_source_net_id?: string | undefined;
|
|
70614
70971
|
reference_input_source_port_id?: string | undefined;
|
|
70615
70972
|
reference_input_source_net_id?: string | undefined;
|
|
70973
|
+
display_options?: {
|
|
70974
|
+
center?: number | undefined;
|
|
70975
|
+
label?: string | undefined;
|
|
70976
|
+
offset_divs?: number | undefined;
|
|
70977
|
+
units_per_div?: number | undefined;
|
|
70978
|
+
} | undefined;
|
|
70616
70979
|
}, {
|
|
70617
70980
|
type: "simulation_voltage_probe";
|
|
70618
70981
|
name?: string | undefined;
|
|
@@ -70624,6 +70987,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70624
70987
|
signal_input_source_net_id?: string | undefined;
|
|
70625
70988
|
reference_input_source_port_id?: string | undefined;
|
|
70626
70989
|
reference_input_source_net_id?: string | undefined;
|
|
70990
|
+
display_options?: {
|
|
70991
|
+
center?: number | undefined;
|
|
70992
|
+
label?: string | undefined;
|
|
70993
|
+
offset_divs?: number | undefined;
|
|
70994
|
+
units_per_div?: number | undefined;
|
|
70995
|
+
} | undefined;
|
|
70627
70996
|
}>, {
|
|
70628
70997
|
type: "simulation_voltage_probe";
|
|
70629
70998
|
simulation_voltage_probe_id: string;
|
|
@@ -70635,6 +71004,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70635
71004
|
signal_input_source_net_id?: string | undefined;
|
|
70636
71005
|
reference_input_source_port_id?: string | undefined;
|
|
70637
71006
|
reference_input_source_net_id?: string | undefined;
|
|
71007
|
+
display_options?: {
|
|
71008
|
+
center?: number | undefined;
|
|
71009
|
+
label?: string | undefined;
|
|
71010
|
+
offset_divs?: number | undefined;
|
|
71011
|
+
units_per_div?: number | undefined;
|
|
71012
|
+
} | undefined;
|
|
70638
71013
|
}, {
|
|
70639
71014
|
type: "simulation_voltage_probe";
|
|
70640
71015
|
name?: string | undefined;
|
|
@@ -70646,6 +71021,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70646
71021
|
signal_input_source_net_id?: string | undefined;
|
|
70647
71022
|
reference_input_source_port_id?: string | undefined;
|
|
70648
71023
|
reference_input_source_net_id?: string | undefined;
|
|
71024
|
+
display_options?: {
|
|
71025
|
+
center?: number | undefined;
|
|
71026
|
+
label?: string | undefined;
|
|
71027
|
+
offset_divs?: number | undefined;
|
|
71028
|
+
units_per_div?: number | undefined;
|
|
71029
|
+
} | undefined;
|
|
70649
71030
|
}>, z.ZodObject<{
|
|
70650
71031
|
message: z.ZodString;
|
|
70651
71032
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -70733,4 +71114,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
70733
71114
|
*/
|
|
70734
71115
|
type CircuitJson = AnyCircuitElement[];
|
|
70735
71116
|
|
|
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 };
|
|
71117
|
+
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 SimulationVoltageProbeDisplayOptions, 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_probe_display_options, 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 };
|