circuit-json 0.0.357 → 0.0.359

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
@@ -8758,6 +8758,7 @@ interface SchematicPort {
8758
8758
  is_connected?: boolean;
8759
8759
  has_input_arrow?: boolean;
8760
8760
  has_output_arrow?: boolean;
8761
+ is_drawn_with_inversion_circle?: boolean;
8761
8762
  }
8762
8763
  declare const schematic_port: z.ZodObject<{
8763
8764
  type: z.ZodLiteral<"schematic_port">;
@@ -8784,6 +8785,7 @@ declare const schematic_port: z.ZodObject<{
8784
8785
  is_connected: z.ZodOptional<z.ZodBoolean>;
8785
8786
  has_input_arrow: z.ZodOptional<z.ZodBoolean>;
8786
8787
  has_output_arrow: z.ZodOptional<z.ZodBoolean>;
8788
+ is_drawn_with_inversion_circle: z.ZodOptional<z.ZodBoolean>;
8787
8789
  }, "strip", z.ZodTypeAny, {
8788
8790
  type: "schematic_port";
8789
8791
  center: {
@@ -8803,6 +8805,7 @@ declare const schematic_port: z.ZodObject<{
8803
8805
  is_connected?: boolean | undefined;
8804
8806
  has_input_arrow?: boolean | undefined;
8805
8807
  has_output_arrow?: boolean | undefined;
8808
+ is_drawn_with_inversion_circle?: boolean | undefined;
8806
8809
  }, {
8807
8810
  type: "schematic_port";
8808
8811
  center: {
@@ -8822,6 +8825,7 @@ declare const schematic_port: z.ZodObject<{
8822
8825
  is_connected?: boolean | undefined;
8823
8826
  has_input_arrow?: boolean | undefined;
8824
8827
  has_output_arrow?: boolean | undefined;
8828
+ is_drawn_with_inversion_circle?: boolean | undefined;
8825
8829
  }>;
8826
8830
  type SchematicPortInput = z.input<typeof schematic_port>;
8827
8831
 
@@ -21023,6 +21027,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
21023
21027
  is_connected: z.ZodOptional<z.ZodBoolean>;
21024
21028
  has_input_arrow: z.ZodOptional<z.ZodBoolean>;
21025
21029
  has_output_arrow: z.ZodOptional<z.ZodBoolean>;
21030
+ is_drawn_with_inversion_circle: z.ZodOptional<z.ZodBoolean>;
21026
21031
  }, "strip", z.ZodTypeAny, {
21027
21032
  type: "schematic_port";
21028
21033
  center: {
@@ -21042,6 +21047,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
21042
21047
  is_connected?: boolean | undefined;
21043
21048
  has_input_arrow?: boolean | undefined;
21044
21049
  has_output_arrow?: boolean | undefined;
21050
+ is_drawn_with_inversion_circle?: boolean | undefined;
21045
21051
  }, {
21046
21052
  type: "schematic_port";
21047
21053
  center: {
@@ -21061,6 +21067,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
21061
21067
  is_connected?: boolean | undefined;
21062
21068
  has_input_arrow?: boolean | undefined;
21063
21069
  has_output_arrow?: boolean | undefined;
21070
+ is_drawn_with_inversion_circle?: boolean | undefined;
21064
21071
  }>, z.ZodObject<{
21065
21072
  type: z.ZodLiteral<"schematic_trace">;
21066
21073
  schematic_trace_id: z.ZodString;
@@ -29530,6 +29537,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
29530
29537
  is_connected: z.ZodOptional<z.ZodBoolean>;
29531
29538
  has_input_arrow: z.ZodOptional<z.ZodBoolean>;
29532
29539
  has_output_arrow: z.ZodOptional<z.ZodBoolean>;
29540
+ is_drawn_with_inversion_circle: z.ZodOptional<z.ZodBoolean>;
29533
29541
  }, "strip", z.ZodTypeAny, {
29534
29542
  type: "schematic_port";
29535
29543
  center: {
@@ -29549,6 +29557,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
29549
29557
  is_connected?: boolean | undefined;
29550
29558
  has_input_arrow?: boolean | undefined;
29551
29559
  has_output_arrow?: boolean | undefined;
29560
+ is_drawn_with_inversion_circle?: boolean | undefined;
29552
29561
  }, {
29553
29562
  type: "schematic_port";
29554
29563
  center: {
@@ -29568,6 +29577,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
29568
29577
  is_connected?: boolean | undefined;
29569
29578
  has_input_arrow?: boolean | undefined;
29570
29579
  has_output_arrow?: boolean | undefined;
29580
+ is_drawn_with_inversion_circle?: boolean | undefined;
29571
29581
  }>, z.ZodObject<{
29572
29582
  type: z.ZodLiteral<"schematic_trace">;
29573
29583
  schematic_trace_id: z.ZodString;
package/dist/index.mjs CHANGED
@@ -1128,7 +1128,8 @@ var schematic_port = z62.object({
1128
1128
  subcircuit_id: z62.string().optional(),
1129
1129
  is_connected: z62.boolean().optional(),
1130
1130
  has_input_arrow: z62.boolean().optional(),
1131
- has_output_arrow: z62.boolean().optional()
1131
+ has_output_arrow: z62.boolean().optional(),
1132
+ is_drawn_with_inversion_circle: z62.boolean().optional()
1132
1133
  }).describe("Defines a port on a schematic component");
1133
1134
  expectTypesMatch(true);
1134
1135