circuit-json 0.0.363 → 0.0.364

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
@@ -7732,7 +7732,6 @@ interface SchematicPath {
7732
7732
  stroke_width?: number | null;
7733
7733
  stroke_color?: string;
7734
7734
  points: Point[];
7735
- svg_path?: string;
7736
7735
  subcircuit_id?: string;
7737
7736
  }
7738
7737
  declare const schematic_path: z.ZodObject<{
@@ -7752,7 +7751,6 @@ declare const schematic_path: z.ZodObject<{
7752
7751
  x: string | number;
7753
7752
  y: string | number;
7754
7753
  }>, "many">;
7755
- svg_path: z.ZodOptional<z.ZodString>;
7756
7754
  subcircuit_id: z.ZodOptional<z.ZodString>;
7757
7755
  }, "strip", z.ZodTypeAny, {
7758
7756
  type: "schematic_path";
@@ -7766,7 +7764,6 @@ declare const schematic_path: z.ZodObject<{
7766
7764
  is_filled?: boolean | undefined;
7767
7765
  fill_color?: "red" | "blue" | undefined;
7768
7766
  stroke_color?: string | undefined;
7769
- svg_path?: string | undefined;
7770
7767
  }, {
7771
7768
  type: "schematic_path";
7772
7769
  points: {
@@ -7779,7 +7776,6 @@ declare const schematic_path: z.ZodObject<{
7779
7776
  is_filled?: boolean | undefined;
7780
7777
  fill_color?: "red" | "blue" | undefined;
7781
7778
  stroke_color?: string | undefined;
7782
- svg_path?: string | undefined;
7783
7779
  }>;
7784
7780
  type SchematicPathInput = z.input<typeof schematic_path>;
7785
7781
 
@@ -21407,7 +21403,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
21407
21403
  x: string | number;
21408
21404
  y: string | number;
21409
21405
  }>, "many">;
21410
- svg_path: z.ZodOptional<z.ZodString>;
21411
21406
  subcircuit_id: z.ZodOptional<z.ZodString>;
21412
21407
  }, "strip", z.ZodTypeAny, {
21413
21408
  type: "schematic_path";
@@ -21421,7 +21416,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
21421
21416
  is_filled?: boolean | undefined;
21422
21417
  fill_color?: "red" | "blue" | undefined;
21423
21418
  stroke_color?: string | undefined;
21424
- svg_path?: string | undefined;
21425
21419
  }, {
21426
21420
  type: "schematic_path";
21427
21421
  points: {
@@ -21434,7 +21428,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
21434
21428
  is_filled?: boolean | undefined;
21435
21429
  fill_color?: "red" | "blue" | undefined;
21436
21430
  stroke_color?: string | undefined;
21437
- svg_path?: string | undefined;
21438
21431
  }>, z.ZodObject<{
21439
21432
  type: z.ZodLiteral<"schematic_error">;
21440
21433
  schematic_error_id: z.ZodString;
@@ -29987,7 +29980,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
29987
29980
  x: string | number;
29988
29981
  y: string | number;
29989
29982
  }>, "many">;
29990
- svg_path: z.ZodOptional<z.ZodString>;
29991
29983
  subcircuit_id: z.ZodOptional<z.ZodString>;
29992
29984
  }, "strip", z.ZodTypeAny, {
29993
29985
  type: "schematic_path";
@@ -30001,7 +29993,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
30001
29993
  is_filled?: boolean | undefined;
30002
29994
  fill_color?: "red" | "blue" | undefined;
30003
29995
  stroke_color?: string | undefined;
30004
- svg_path?: string | undefined;
30005
29996
  }, {
30006
29997
  type: "schematic_path";
30007
29998
  points: {
@@ -30014,7 +30005,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
30014
30005
  is_filled?: boolean | undefined;
30015
30006
  fill_color?: "red" | "blue" | undefined;
30016
30007
  stroke_color?: string | undefined;
30017
- svg_path?: string | undefined;
30018
30008
  }>, z.ZodObject<{
30019
30009
  type: z.ZodLiteral<"schematic_error">;
30020
30010
  schematic_error_id: z.ZodString;
package/dist/index.mjs CHANGED
@@ -925,7 +925,6 @@ var schematic_path = z54.object({
925
925
  stroke_width: distance.nullable().optional(),
926
926
  stroke_color: z54.string().optional(),
927
927
  points: z54.array(point),
928
- svg_path: z54.string().optional(),
929
928
  subcircuit_id: z54.string().optional()
930
929
  });
931
930
  expectTypesMatch(true);