circuit-json 0.0.330 → 0.0.331
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 +8 -0
- package/dist/index.d.mts +742 -0
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -345,6 +345,12 @@ var source_component_base = z8.object({
|
|
|
345
345
|
manufacturer_part_number: z8.string().optional(),
|
|
346
346
|
supplier_part_numbers: z8.record(supplier_name, z8.array(z8.string())).optional(),
|
|
347
347
|
display_value: z8.string().optional(),
|
|
348
|
+
display_x_offset: z8.string().optional().describe(
|
|
349
|
+
"How to display the x offset for this part, usually corresponding with how the user specified it"
|
|
350
|
+
),
|
|
351
|
+
display_y_offset: z8.string().optional().describe(
|
|
352
|
+
"How to display the y offset for this part, usually corresponding with how the user specified it"
|
|
353
|
+
),
|
|
348
354
|
are_pins_interchangeable: z8.boolean().optional(),
|
|
349
355
|
internally_connected_source_port_ids: z8.array(z8.array(z8.string())).optional(),
|
|
350
356
|
source_group_id: z8.string().optional(),
|