circuit-json 0.0.329 → 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/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(),
@@ -1323,6 +1329,7 @@ var pcb_component = z73.object({
1323
1329
  pcb_group_id: z73.string().optional(),
1324
1330
  position_mode: z73.enum(["packed", "relative_to_group_anchor", "none"]).optional(),
1325
1331
  positioned_relative_to_pcb_group_id: z73.string().optional(),
1332
+ positioned_relative_to_pcb_board_id: z73.string().optional(),
1326
1333
  obstructs_within_bounds: z73.boolean().default(true).describe(
1327
1334
  "Does this component take up all the space within its bounds on a layer. This is generally true except for when separated pin headers are being represented by a single component (in which case, chips can be placed between the pin headers) or for tall modules where chips fit underneath"
1328
1335
  )