circuit-json 0.0.425 → 0.0.426

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 CHANGED
@@ -8894,6 +8894,7 @@ declare const pcb_fabrication_note_text: z.ZodObject<{
8894
8894
  font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8895
8895
  pcb_component_id: z.ZodString;
8896
8896
  text: z.ZodString;
8897
+ ccw_rotation: z.ZodOptional<z.ZodNumber>;
8897
8898
  layer: z.ZodEnum<["top", "bottom"]>;
8898
8899
  anchor_position: z.ZodDefault<z.ZodObject<{
8899
8900
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -8922,6 +8923,7 @@ declare const pcb_fabrication_note_text: z.ZodObject<{
8922
8923
  pcb_fabrication_note_text_id: string;
8923
8924
  subcircuit_id?: string | undefined;
8924
8925
  pcb_group_id?: string | undefined;
8926
+ ccw_rotation?: number | undefined;
8925
8927
  color?: string | undefined;
8926
8928
  }, {
8927
8929
  type: "pcb_fabrication_note_text";
@@ -8936,6 +8938,7 @@ declare const pcb_fabrication_note_text: z.ZodObject<{
8936
8938
  y: string | number;
8937
8939
  } | undefined;
8938
8940
  anchor_alignment?: "top_left" | "top_right" | "center" | "bottom_left" | "bottom_right" | undefined;
8941
+ ccw_rotation?: number | undefined;
8939
8942
  font_size?: string | number | undefined;
8940
8943
  pcb_fabrication_note_text_id?: string | undefined;
8941
8944
  color?: string | undefined;
@@ -8953,6 +8956,7 @@ interface PcbFabricationNoteText {
8953
8956
  font_size: Length;
8954
8957
  pcb_component_id: string;
8955
8958
  text: string;
8959
+ ccw_rotation?: number;
8956
8960
  layer: VisibleLayer;
8957
8961
  anchor_position: Point;
8958
8962
  anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
@@ -41130,6 +41134,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
41130
41134
  font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
41131
41135
  pcb_component_id: z.ZodString;
41132
41136
  text: z.ZodString;
41137
+ ccw_rotation: z.ZodOptional<z.ZodNumber>;
41133
41138
  layer: z.ZodEnum<["top", "bottom"]>;
41134
41139
  anchor_position: z.ZodDefault<z.ZodObject<{
41135
41140
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -41158,6 +41163,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
41158
41163
  pcb_fabrication_note_text_id: string;
41159
41164
  subcircuit_id?: string | undefined;
41160
41165
  pcb_group_id?: string | undefined;
41166
+ ccw_rotation?: number | undefined;
41161
41167
  color?: string | undefined;
41162
41168
  }, {
41163
41169
  type: "pcb_fabrication_note_text";
@@ -41172,6 +41178,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
41172
41178
  y: string | number;
41173
41179
  } | undefined;
41174
41180
  anchor_alignment?: "top_left" | "top_right" | "center" | "bottom_left" | "bottom_right" | undefined;
41181
+ ccw_rotation?: number | undefined;
41175
41182
  font_size?: string | number | undefined;
41176
41183
  pcb_fabrication_note_text_id?: string | undefined;
41177
41184
  color?: string | undefined;
@@ -59376,6 +59383,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
59376
59383
  font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
59377
59384
  pcb_component_id: z.ZodString;
59378
59385
  text: z.ZodString;
59386
+ ccw_rotation: z.ZodOptional<z.ZodNumber>;
59379
59387
  layer: z.ZodEnum<["top", "bottom"]>;
59380
59388
  anchor_position: z.ZodDefault<z.ZodObject<{
59381
59389
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -59404,6 +59412,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
59404
59412
  pcb_fabrication_note_text_id: string;
59405
59413
  subcircuit_id?: string | undefined;
59406
59414
  pcb_group_id?: string | undefined;
59415
+ ccw_rotation?: number | undefined;
59407
59416
  color?: string | undefined;
59408
59417
  }, {
59409
59418
  type: "pcb_fabrication_note_text";
@@ -59418,6 +59427,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
59418
59427
  y: string | number;
59419
59428
  } | undefined;
59420
59429
  anchor_alignment?: "top_left" | "top_right" | "center" | "bottom_left" | "bottom_right" | undefined;
59430
+ ccw_rotation?: number | undefined;
59421
59431
  font_size?: string | number | undefined;
59422
59432
  pcb_fabrication_note_text_id?: string | undefined;
59423
59433
  color?: string | undefined;
package/dist/index.mjs CHANGED
@@ -2722,6 +2722,7 @@ var pcb_fabrication_note_text = z121.object({
2722
2722
  font_size: distance.default("1mm"),
2723
2723
  pcb_component_id: z121.string(),
2724
2724
  text: z121.string(),
2725
+ ccw_rotation: z121.number().optional(),
2725
2726
  layer: visible_layer,
2726
2727
  anchor_position: point.default({ x: 0, y: 0 }),
2727
2728
  anchor_alignment: z121.enum(["center", "top_left", "top_right", "bottom_left", "bottom_right"]).default("center"),