circuit-json 0.0.355 → 0.0.356
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +80 -156
- package/dist/index.mjs +8 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2136,18 +2136,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2136
2136
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2137
2137
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2138
2138
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
x: number;
|
|
2144
|
-
y: number;
|
|
2145
|
-
}, {
|
|
2146
|
-
x: number;
|
|
2147
|
-
y: number;
|
|
2148
|
-
}>>;
|
|
2149
|
-
soldermask_width: z.ZodOptional<z.ZodNumber>;
|
|
2150
|
-
soldermask_height: z.ZodOptional<z.ZodNumber>;
|
|
2139
|
+
soldermask_margin_left: z.ZodOptional<z.ZodNumber>;
|
|
2140
|
+
soldermask_margin_top: z.ZodOptional<z.ZodNumber>;
|
|
2141
|
+
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
2142
|
+
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
2151
2143
|
}, "strip", z.ZodTypeAny, {
|
|
2152
2144
|
x: number;
|
|
2153
2145
|
y: number;
|
|
@@ -2166,12 +2158,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2166
2158
|
pcb_port_id?: string | undefined;
|
|
2167
2159
|
rect_border_radius?: number | undefined;
|
|
2168
2160
|
corner_radius?: number | undefined;
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
soldermask_width?: number | undefined;
|
|
2174
|
-
soldermask_height?: number | undefined;
|
|
2161
|
+
soldermask_margin_left?: number | undefined;
|
|
2162
|
+
soldermask_margin_top?: number | undefined;
|
|
2163
|
+
soldermask_margin_right?: number | undefined;
|
|
2164
|
+
soldermask_margin_bottom?: number | undefined;
|
|
2175
2165
|
}, {
|
|
2176
2166
|
x: string | number;
|
|
2177
2167
|
y: string | number;
|
|
@@ -2192,12 +2182,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2192
2182
|
rect_border_radius?: number | undefined;
|
|
2193
2183
|
pcb_smtpad_id?: string | undefined;
|
|
2194
2184
|
corner_radius?: number | undefined;
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
soldermask_width?: number | undefined;
|
|
2200
|
-
soldermask_height?: number | undefined;
|
|
2185
|
+
soldermask_margin_left?: number | undefined;
|
|
2186
|
+
soldermask_margin_top?: number | undefined;
|
|
2187
|
+
soldermask_margin_right?: number | undefined;
|
|
2188
|
+
soldermask_margin_bottom?: number | undefined;
|
|
2201
2189
|
}>, z.ZodObject<{
|
|
2202
2190
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2203
2191
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -2225,18 +2213,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2225
2213
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
2226
2214
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
2227
2215
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
x: number;
|
|
2233
|
-
y: number;
|
|
2234
|
-
}, {
|
|
2235
|
-
x: number;
|
|
2236
|
-
y: number;
|
|
2237
|
-
}>>;
|
|
2238
|
-
soldermask_width: z.ZodOptional<z.ZodNumber>;
|
|
2239
|
-
soldermask_height: z.ZodOptional<z.ZodNumber>;
|
|
2216
|
+
soldermask_margin_left: z.ZodOptional<z.ZodNumber>;
|
|
2217
|
+
soldermask_margin_top: z.ZodOptional<z.ZodNumber>;
|
|
2218
|
+
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
2219
|
+
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
2240
2220
|
}, "strip", z.ZodTypeAny, {
|
|
2241
2221
|
x: number;
|
|
2242
2222
|
y: number;
|
|
@@ -2256,12 +2236,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2256
2236
|
pcb_port_id?: string | undefined;
|
|
2257
2237
|
rect_border_radius?: number | undefined;
|
|
2258
2238
|
corner_radius?: number | undefined;
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
soldermask_width?: number | undefined;
|
|
2264
|
-
soldermask_height?: number | undefined;
|
|
2239
|
+
soldermask_margin_left?: number | undefined;
|
|
2240
|
+
soldermask_margin_top?: number | undefined;
|
|
2241
|
+
soldermask_margin_right?: number | undefined;
|
|
2242
|
+
soldermask_margin_bottom?: number | undefined;
|
|
2265
2243
|
}, {
|
|
2266
2244
|
x: string | number;
|
|
2267
2245
|
y: string | number;
|
|
@@ -2283,12 +2261,10 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
2283
2261
|
rect_border_radius?: number | undefined;
|
|
2284
2262
|
pcb_smtpad_id?: string | undefined;
|
|
2285
2263
|
corner_radius?: number | undefined;
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
soldermask_width?: number | undefined;
|
|
2291
|
-
soldermask_height?: number | undefined;
|
|
2264
|
+
soldermask_margin_left?: number | undefined;
|
|
2265
|
+
soldermask_margin_top?: number | undefined;
|
|
2266
|
+
soldermask_margin_right?: number | undefined;
|
|
2267
|
+
soldermask_margin_bottom?: number | undefined;
|
|
2292
2268
|
}>, z.ZodObject<{
|
|
2293
2269
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
2294
2270
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -2520,12 +2496,10 @@ interface PcbSmtPadRect {
|
|
|
2520
2496
|
pcb_port_id?: string;
|
|
2521
2497
|
is_covered_with_solder_mask?: boolean;
|
|
2522
2498
|
soldermask_margin?: number;
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
soldermask_width?: number;
|
|
2528
|
-
soldermask_height?: number;
|
|
2499
|
+
soldermask_margin_left?: number;
|
|
2500
|
+
soldermask_margin_top?: number;
|
|
2501
|
+
soldermask_margin_right?: number;
|
|
2502
|
+
soldermask_margin_bottom?: number;
|
|
2529
2503
|
}
|
|
2530
2504
|
/**
|
|
2531
2505
|
* Defines a rotated rectangular SMT pad on the PCB
|
|
@@ -2549,12 +2523,10 @@ interface PcbSmtPadRotatedRect {
|
|
|
2549
2523
|
pcb_port_id?: string;
|
|
2550
2524
|
is_covered_with_solder_mask?: boolean;
|
|
2551
2525
|
soldermask_margin?: number;
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
soldermask_width?: number;
|
|
2557
|
-
soldermask_height?: number;
|
|
2526
|
+
soldermask_margin_left?: number;
|
|
2527
|
+
soldermask_margin_top?: number;
|
|
2528
|
+
soldermask_margin_right?: number;
|
|
2529
|
+
soldermask_margin_bottom?: number;
|
|
2558
2530
|
}
|
|
2559
2531
|
/**
|
|
2560
2532
|
* Defines a pill-shaped SMT pad on the PCB (rounded rectangle).
|
|
@@ -17164,18 +17136,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17164
17136
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
17165
17137
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
17166
17138
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
17167
|
-
|
|
17168
|
-
|
|
17169
|
-
|
|
17170
|
-
|
|
17171
|
-
x: number;
|
|
17172
|
-
y: number;
|
|
17173
|
-
}, {
|
|
17174
|
-
x: number;
|
|
17175
|
-
y: number;
|
|
17176
|
-
}>>;
|
|
17177
|
-
soldermask_width: z.ZodOptional<z.ZodNumber>;
|
|
17178
|
-
soldermask_height: z.ZodOptional<z.ZodNumber>;
|
|
17139
|
+
soldermask_margin_left: z.ZodOptional<z.ZodNumber>;
|
|
17140
|
+
soldermask_margin_top: z.ZodOptional<z.ZodNumber>;
|
|
17141
|
+
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
17142
|
+
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
17179
17143
|
}, "strip", z.ZodTypeAny, {
|
|
17180
17144
|
x: number;
|
|
17181
17145
|
y: number;
|
|
@@ -17194,12 +17158,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17194
17158
|
pcb_port_id?: string | undefined;
|
|
17195
17159
|
rect_border_radius?: number | undefined;
|
|
17196
17160
|
corner_radius?: number | undefined;
|
|
17197
|
-
|
|
17198
|
-
|
|
17199
|
-
|
|
17200
|
-
|
|
17201
|
-
soldermask_width?: number | undefined;
|
|
17202
|
-
soldermask_height?: number | undefined;
|
|
17161
|
+
soldermask_margin_left?: number | undefined;
|
|
17162
|
+
soldermask_margin_top?: number | undefined;
|
|
17163
|
+
soldermask_margin_right?: number | undefined;
|
|
17164
|
+
soldermask_margin_bottom?: number | undefined;
|
|
17203
17165
|
}, {
|
|
17204
17166
|
x: string | number;
|
|
17205
17167
|
y: string | number;
|
|
@@ -17220,12 +17182,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17220
17182
|
rect_border_radius?: number | undefined;
|
|
17221
17183
|
pcb_smtpad_id?: string | undefined;
|
|
17222
17184
|
corner_radius?: number | undefined;
|
|
17223
|
-
|
|
17224
|
-
|
|
17225
|
-
|
|
17226
|
-
|
|
17227
|
-
soldermask_width?: number | undefined;
|
|
17228
|
-
soldermask_height?: number | undefined;
|
|
17185
|
+
soldermask_margin_left?: number | undefined;
|
|
17186
|
+
soldermask_margin_top?: number | undefined;
|
|
17187
|
+
soldermask_margin_right?: number | undefined;
|
|
17188
|
+
soldermask_margin_bottom?: number | undefined;
|
|
17229
17189
|
}>, z.ZodObject<{
|
|
17230
17190
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
17231
17191
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -17253,18 +17213,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17253
17213
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
17254
17214
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
17255
17215
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
17256
|
-
|
|
17257
|
-
|
|
17258
|
-
|
|
17259
|
-
|
|
17260
|
-
x: number;
|
|
17261
|
-
y: number;
|
|
17262
|
-
}, {
|
|
17263
|
-
x: number;
|
|
17264
|
-
y: number;
|
|
17265
|
-
}>>;
|
|
17266
|
-
soldermask_width: z.ZodOptional<z.ZodNumber>;
|
|
17267
|
-
soldermask_height: z.ZodOptional<z.ZodNumber>;
|
|
17216
|
+
soldermask_margin_left: z.ZodOptional<z.ZodNumber>;
|
|
17217
|
+
soldermask_margin_top: z.ZodOptional<z.ZodNumber>;
|
|
17218
|
+
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
17219
|
+
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
17268
17220
|
}, "strip", z.ZodTypeAny, {
|
|
17269
17221
|
x: number;
|
|
17270
17222
|
y: number;
|
|
@@ -17284,12 +17236,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17284
17236
|
pcb_port_id?: string | undefined;
|
|
17285
17237
|
rect_border_radius?: number | undefined;
|
|
17286
17238
|
corner_radius?: number | undefined;
|
|
17287
|
-
|
|
17288
|
-
|
|
17289
|
-
|
|
17290
|
-
|
|
17291
|
-
soldermask_width?: number | undefined;
|
|
17292
|
-
soldermask_height?: number | undefined;
|
|
17239
|
+
soldermask_margin_left?: number | undefined;
|
|
17240
|
+
soldermask_margin_top?: number | undefined;
|
|
17241
|
+
soldermask_margin_right?: number | undefined;
|
|
17242
|
+
soldermask_margin_bottom?: number | undefined;
|
|
17293
17243
|
}, {
|
|
17294
17244
|
x: string | number;
|
|
17295
17245
|
y: string | number;
|
|
@@ -17311,12 +17261,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17311
17261
|
rect_border_radius?: number | undefined;
|
|
17312
17262
|
pcb_smtpad_id?: string | undefined;
|
|
17313
17263
|
corner_radius?: number | undefined;
|
|
17314
|
-
|
|
17315
|
-
|
|
17316
|
-
|
|
17317
|
-
|
|
17318
|
-
soldermask_width?: number | undefined;
|
|
17319
|
-
soldermask_height?: number | undefined;
|
|
17264
|
+
soldermask_margin_left?: number | undefined;
|
|
17265
|
+
soldermask_margin_top?: number | undefined;
|
|
17266
|
+
soldermask_margin_right?: number | undefined;
|
|
17267
|
+
soldermask_margin_bottom?: number | undefined;
|
|
17320
17268
|
}>, z.ZodObject<{
|
|
17321
17269
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
17322
17270
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -25569,18 +25517,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25569
25517
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
25570
25518
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
25571
25519
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
25572
|
-
|
|
25573
|
-
|
|
25574
|
-
|
|
25575
|
-
|
|
25576
|
-
x: number;
|
|
25577
|
-
y: number;
|
|
25578
|
-
}, {
|
|
25579
|
-
x: number;
|
|
25580
|
-
y: number;
|
|
25581
|
-
}>>;
|
|
25582
|
-
soldermask_width: z.ZodOptional<z.ZodNumber>;
|
|
25583
|
-
soldermask_height: z.ZodOptional<z.ZodNumber>;
|
|
25520
|
+
soldermask_margin_left: z.ZodOptional<z.ZodNumber>;
|
|
25521
|
+
soldermask_margin_top: z.ZodOptional<z.ZodNumber>;
|
|
25522
|
+
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
25523
|
+
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
25584
25524
|
}, "strip", z.ZodTypeAny, {
|
|
25585
25525
|
x: number;
|
|
25586
25526
|
y: number;
|
|
@@ -25599,12 +25539,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25599
25539
|
pcb_port_id?: string | undefined;
|
|
25600
25540
|
rect_border_radius?: number | undefined;
|
|
25601
25541
|
corner_radius?: number | undefined;
|
|
25602
|
-
|
|
25603
|
-
|
|
25604
|
-
|
|
25605
|
-
|
|
25606
|
-
soldermask_width?: number | undefined;
|
|
25607
|
-
soldermask_height?: number | undefined;
|
|
25542
|
+
soldermask_margin_left?: number | undefined;
|
|
25543
|
+
soldermask_margin_top?: number | undefined;
|
|
25544
|
+
soldermask_margin_right?: number | undefined;
|
|
25545
|
+
soldermask_margin_bottom?: number | undefined;
|
|
25608
25546
|
}, {
|
|
25609
25547
|
x: string | number;
|
|
25610
25548
|
y: string | number;
|
|
@@ -25625,12 +25563,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25625
25563
|
rect_border_radius?: number | undefined;
|
|
25626
25564
|
pcb_smtpad_id?: string | undefined;
|
|
25627
25565
|
corner_radius?: number | undefined;
|
|
25628
|
-
|
|
25629
|
-
|
|
25630
|
-
|
|
25631
|
-
|
|
25632
|
-
soldermask_width?: number | undefined;
|
|
25633
|
-
soldermask_height?: number | undefined;
|
|
25566
|
+
soldermask_margin_left?: number | undefined;
|
|
25567
|
+
soldermask_margin_top?: number | undefined;
|
|
25568
|
+
soldermask_margin_right?: number | undefined;
|
|
25569
|
+
soldermask_margin_bottom?: number | undefined;
|
|
25634
25570
|
}>, z.ZodObject<{
|
|
25635
25571
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
25636
25572
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -25658,18 +25594,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25658
25594
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
25659
25595
|
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
25660
25596
|
soldermask_margin: z.ZodOptional<z.ZodNumber>;
|
|
25661
|
-
|
|
25662
|
-
|
|
25663
|
-
|
|
25664
|
-
|
|
25665
|
-
x: number;
|
|
25666
|
-
y: number;
|
|
25667
|
-
}, {
|
|
25668
|
-
x: number;
|
|
25669
|
-
y: number;
|
|
25670
|
-
}>>;
|
|
25671
|
-
soldermask_width: z.ZodOptional<z.ZodNumber>;
|
|
25672
|
-
soldermask_height: z.ZodOptional<z.ZodNumber>;
|
|
25597
|
+
soldermask_margin_left: z.ZodOptional<z.ZodNumber>;
|
|
25598
|
+
soldermask_margin_top: z.ZodOptional<z.ZodNumber>;
|
|
25599
|
+
soldermask_margin_right: z.ZodOptional<z.ZodNumber>;
|
|
25600
|
+
soldermask_margin_bottom: z.ZodOptional<z.ZodNumber>;
|
|
25673
25601
|
}, "strip", z.ZodTypeAny, {
|
|
25674
25602
|
x: number;
|
|
25675
25603
|
y: number;
|
|
@@ -25689,12 +25617,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25689
25617
|
pcb_port_id?: string | undefined;
|
|
25690
25618
|
rect_border_radius?: number | undefined;
|
|
25691
25619
|
corner_radius?: number | undefined;
|
|
25692
|
-
|
|
25693
|
-
|
|
25694
|
-
|
|
25695
|
-
|
|
25696
|
-
soldermask_width?: number | undefined;
|
|
25697
|
-
soldermask_height?: number | undefined;
|
|
25620
|
+
soldermask_margin_left?: number | undefined;
|
|
25621
|
+
soldermask_margin_top?: number | undefined;
|
|
25622
|
+
soldermask_margin_right?: number | undefined;
|
|
25623
|
+
soldermask_margin_bottom?: number | undefined;
|
|
25698
25624
|
}, {
|
|
25699
25625
|
x: string | number;
|
|
25700
25626
|
y: string | number;
|
|
@@ -25716,12 +25642,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25716
25642
|
rect_border_radius?: number | undefined;
|
|
25717
25643
|
pcb_smtpad_id?: string | undefined;
|
|
25718
25644
|
corner_radius?: number | undefined;
|
|
25719
|
-
|
|
25720
|
-
|
|
25721
|
-
|
|
25722
|
-
|
|
25723
|
-
soldermask_width?: number | undefined;
|
|
25724
|
-
soldermask_height?: number | undefined;
|
|
25645
|
+
soldermask_margin_left?: number | undefined;
|
|
25646
|
+
soldermask_margin_top?: number | undefined;
|
|
25647
|
+
soldermask_margin_right?: number | undefined;
|
|
25648
|
+
soldermask_margin_bottom?: number | undefined;
|
|
25725
25649
|
}>, z.ZodObject<{
|
|
25726
25650
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
25727
25651
|
shape: z.ZodLiteral<"rotated_pill">;
|
package/dist/index.mjs
CHANGED
|
@@ -1697,9 +1697,10 @@ var pcb_smtpad_rect = z80.object({
|
|
|
1697
1697
|
pcb_port_id: z80.string().optional(),
|
|
1698
1698
|
is_covered_with_solder_mask: z80.boolean().optional(),
|
|
1699
1699
|
soldermask_margin: z80.number().optional(),
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1700
|
+
soldermask_margin_left: z80.number().optional(),
|
|
1701
|
+
soldermask_margin_top: z80.number().optional(),
|
|
1702
|
+
soldermask_margin_right: z80.number().optional(),
|
|
1703
|
+
soldermask_margin_bottom: z80.number().optional()
|
|
1703
1704
|
});
|
|
1704
1705
|
var pcb_smtpad_rotated_rect = z80.object({
|
|
1705
1706
|
type: z80.literal("pcb_smtpad"),
|
|
@@ -1720,9 +1721,10 @@ var pcb_smtpad_rotated_rect = z80.object({
|
|
|
1720
1721
|
pcb_port_id: z80.string().optional(),
|
|
1721
1722
|
is_covered_with_solder_mask: z80.boolean().optional(),
|
|
1722
1723
|
soldermask_margin: z80.number().optional(),
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1724
|
+
soldermask_margin_left: z80.number().optional(),
|
|
1725
|
+
soldermask_margin_top: z80.number().optional(),
|
|
1726
|
+
soldermask_margin_right: z80.number().optional(),
|
|
1727
|
+
soldermask_margin_bottom: z80.number().optional()
|
|
1726
1728
|
});
|
|
1727
1729
|
var pcb_smtpad_pill = z80.object({
|
|
1728
1730
|
type: z80.literal("pcb_smtpad"),
|