circuit-json 0.0.438 → 0.0.440

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
@@ -25754,16 +25754,19 @@ declare const schematic_sheet: z.ZodObject<{
25754
25754
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
25755
25755
  name: z.ZodOptional<z.ZodString>;
25756
25756
  subcircuit_id: z.ZodOptional<z.ZodString>;
25757
+ outline_color: z.ZodOptional<z.ZodString>;
25757
25758
  }, "strip", z.ZodTypeAny, {
25758
25759
  type: "schematic_sheet";
25759
25760
  schematic_sheet_id: string;
25760
25761
  name?: string | undefined;
25761
25762
  subcircuit_id?: string | undefined;
25763
+ outline_color?: string | undefined;
25762
25764
  }, {
25763
25765
  type: "schematic_sheet";
25764
25766
  name?: string | undefined;
25765
25767
  subcircuit_id?: string | undefined;
25766
25768
  schematic_sheet_id?: string | undefined;
25769
+ outline_color?: string | undefined;
25767
25770
  }>;
25768
25771
  type SchematicSheetInput = z.input<typeof schematic_sheet>;
25769
25772
  /**
@@ -25774,6 +25777,7 @@ interface SchematicSheet {
25774
25777
  schematic_sheet_id: string;
25775
25778
  name?: string;
25776
25779
  subcircuit_id?: string;
25780
+ outline_color?: string;
25777
25781
  }
25778
25782
 
25779
25783
  declare const wave_shape: z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>;
@@ -30728,6 +30732,7 @@ interface SourceTrace {
30728
30732
  subcircuit_id?: string;
30729
30733
  subcircuit_connectivity_map_key?: string;
30730
30734
  max_length?: number;
30735
+ name?: string;
30731
30736
  display_name?: string;
30732
30737
  min_trace_thickness?: number;
30733
30738
  }
@@ -30739,6 +30744,7 @@ declare const source_trace: z.ZodObject<{
30739
30744
  subcircuit_id: z.ZodOptional<z.ZodString>;
30740
30745
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
30741
30746
  max_length: z.ZodOptional<z.ZodNumber>;
30747
+ name: z.ZodOptional<z.ZodString>;
30742
30748
  min_trace_thickness: z.ZodOptional<z.ZodNumber>;
30743
30749
  display_name: z.ZodOptional<z.ZodString>;
30744
30750
  }, "strip", z.ZodTypeAny, {
@@ -30746,6 +30752,7 @@ declare const source_trace: z.ZodObject<{
30746
30752
  source_trace_id: string;
30747
30753
  connected_source_port_ids: string[];
30748
30754
  connected_source_net_ids: string[];
30755
+ name?: string | undefined;
30749
30756
  subcircuit_id?: string | undefined;
30750
30757
  subcircuit_connectivity_map_key?: string | undefined;
30751
30758
  display_name?: string | undefined;
@@ -30756,6 +30763,7 @@ declare const source_trace: z.ZodObject<{
30756
30763
  source_trace_id: string;
30757
30764
  connected_source_port_ids: string[];
30758
30765
  connected_source_net_ids: string[];
30766
+ name?: string | undefined;
30759
30767
  subcircuit_id?: string | undefined;
30760
30768
  subcircuit_connectivity_map_key?: string | undefined;
30761
30769
  display_name?: string | undefined;
@@ -34050,6 +34058,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34050
34058
  subcircuit_id: z.ZodOptional<z.ZodString>;
34051
34059
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
34052
34060
  max_length: z.ZodOptional<z.ZodNumber>;
34061
+ name: z.ZodOptional<z.ZodString>;
34053
34062
  min_trace_thickness: z.ZodOptional<z.ZodNumber>;
34054
34063
  display_name: z.ZodOptional<z.ZodString>;
34055
34064
  }, "strip", z.ZodTypeAny, {
@@ -34057,6 +34066,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34057
34066
  source_trace_id: string;
34058
34067
  connected_source_port_ids: string[];
34059
34068
  connected_source_net_ids: string[];
34069
+ name?: string | undefined;
34060
34070
  subcircuit_id?: string | undefined;
34061
34071
  subcircuit_connectivity_map_key?: string | undefined;
34062
34072
  display_name?: string | undefined;
@@ -34067,6 +34077,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34067
34077
  source_trace_id: string;
34068
34078
  connected_source_port_ids: string[];
34069
34079
  connected_source_net_ids: string[];
34080
+ name?: string | undefined;
34070
34081
  subcircuit_id?: string | undefined;
34071
34082
  subcircuit_connectivity_map_key?: string | undefined;
34072
34083
  display_name?: string | undefined;
@@ -51983,16 +51994,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
51983
51994
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
51984
51995
  name: z.ZodOptional<z.ZodString>;
51985
51996
  subcircuit_id: z.ZodOptional<z.ZodString>;
51997
+ outline_color: z.ZodOptional<z.ZodString>;
51986
51998
  }, "strip", z.ZodTypeAny, {
51987
51999
  type: "schematic_sheet";
51988
52000
  schematic_sheet_id: string;
51989
52001
  name?: string | undefined;
51990
52002
  subcircuit_id?: string | undefined;
52003
+ outline_color?: string | undefined;
51991
52004
  }, {
51992
52005
  type: "schematic_sheet";
51993
52006
  name?: string | undefined;
51994
52007
  subcircuit_id?: string | undefined;
51995
52008
  schematic_sheet_id?: string | undefined;
52009
+ outline_color?: string | undefined;
51996
52010
  }>, z.ZodObject<{
51997
52011
  type: z.ZodLiteral<"schematic_table">;
51998
52012
  schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -52862,6 +52876,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52862
52876
  subcircuit_id: z.ZodOptional<z.ZodString>;
52863
52877
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
52864
52878
  max_length: z.ZodOptional<z.ZodNumber>;
52879
+ name: z.ZodOptional<z.ZodString>;
52865
52880
  min_trace_thickness: z.ZodOptional<z.ZodNumber>;
52866
52881
  display_name: z.ZodOptional<z.ZodString>;
52867
52882
  }, "strip", z.ZodTypeAny, {
@@ -52869,6 +52884,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52869
52884
  source_trace_id: string;
52870
52885
  connected_source_port_ids: string[];
52871
52886
  connected_source_net_ids: string[];
52887
+ name?: string | undefined;
52872
52888
  subcircuit_id?: string | undefined;
52873
52889
  subcircuit_connectivity_map_key?: string | undefined;
52874
52890
  display_name?: string | undefined;
@@ -52879,6 +52895,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52879
52895
  source_trace_id: string;
52880
52896
  connected_source_port_ids: string[];
52881
52897
  connected_source_net_ids: string[];
52898
+ name?: string | undefined;
52882
52899
  subcircuit_id?: string | undefined;
52883
52900
  subcircuit_connectivity_map_key?: string | undefined;
52884
52901
  display_name?: string | undefined;
@@ -70795,16 +70812,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70795
70812
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
70796
70813
  name: z.ZodOptional<z.ZodString>;
70797
70814
  subcircuit_id: z.ZodOptional<z.ZodString>;
70815
+ outline_color: z.ZodOptional<z.ZodString>;
70798
70816
  }, "strip", z.ZodTypeAny, {
70799
70817
  type: "schematic_sheet";
70800
70818
  schematic_sheet_id: string;
70801
70819
  name?: string | undefined;
70802
70820
  subcircuit_id?: string | undefined;
70821
+ outline_color?: string | undefined;
70803
70822
  }, {
70804
70823
  type: "schematic_sheet";
70805
70824
  name?: string | undefined;
70806
70825
  subcircuit_id?: string | undefined;
70807
70826
  schematic_sheet_id?: string | undefined;
70827
+ outline_color?: string | undefined;
70808
70828
  }>, z.ZodObject<{
70809
70829
  type: z.ZodLiteral<"schematic_table">;
70810
70830
  schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
package/dist/index.mjs CHANGED
@@ -855,6 +855,7 @@ var source_trace = z56.object({
855
855
  subcircuit_id: z56.string().optional(),
856
856
  subcircuit_connectivity_map_key: z56.string().optional(),
857
857
  max_length: z56.number().optional(),
858
+ name: z56.string().optional(),
858
859
  min_trace_thickness: z56.number().optional(),
859
860
  display_name: z56.string().optional()
860
861
  });
@@ -1499,7 +1500,8 @@ var schematic_sheet = z90.object({
1499
1500
  type: z90.literal("schematic_sheet"),
1500
1501
  schematic_sheet_id: getZodPrefixedIdWithDefault("schematic_sheet"),
1501
1502
  name: z90.string().optional(),
1502
- subcircuit_id: z90.string().optional()
1503
+ subcircuit_id: z90.string().optional(),
1504
+ outline_color: z90.string().optional()
1503
1505
  }).describe(
1504
1506
  "Defines a schematic sheet or page that components can be placed on"
1505
1507
  );