circuit-json 0.0.439 → 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"]>;
@@ -51990,16 +51994,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
51990
51994
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
51991
51995
  name: z.ZodOptional<z.ZodString>;
51992
51996
  subcircuit_id: z.ZodOptional<z.ZodString>;
51997
+ outline_color: z.ZodOptional<z.ZodString>;
51993
51998
  }, "strip", z.ZodTypeAny, {
51994
51999
  type: "schematic_sheet";
51995
52000
  schematic_sheet_id: string;
51996
52001
  name?: string | undefined;
51997
52002
  subcircuit_id?: string | undefined;
52003
+ outline_color?: string | undefined;
51998
52004
  }, {
51999
52005
  type: "schematic_sheet";
52000
52006
  name?: string | undefined;
52001
52007
  subcircuit_id?: string | undefined;
52002
52008
  schematic_sheet_id?: string | undefined;
52009
+ outline_color?: string | undefined;
52003
52010
  }>, z.ZodObject<{
52004
52011
  type: z.ZodLiteral<"schematic_table">;
52005
52012
  schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -70805,16 +70812,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70805
70812
  schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
70806
70813
  name: z.ZodOptional<z.ZodString>;
70807
70814
  subcircuit_id: z.ZodOptional<z.ZodString>;
70815
+ outline_color: z.ZodOptional<z.ZodString>;
70808
70816
  }, "strip", z.ZodTypeAny, {
70809
70817
  type: "schematic_sheet";
70810
70818
  schematic_sheet_id: string;
70811
70819
  name?: string | undefined;
70812
70820
  subcircuit_id?: string | undefined;
70821
+ outline_color?: string | undefined;
70813
70822
  }, {
70814
70823
  type: "schematic_sheet";
70815
70824
  name?: string | undefined;
70816
70825
  subcircuit_id?: string | undefined;
70817
70826
  schematic_sheet_id?: string | undefined;
70827
+ outline_color?: string | undefined;
70818
70828
  }>, z.ZodObject<{
70819
70829
  type: z.ZodLiteral<"schematic_table">;
70820
70830
  schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
package/dist/index.mjs CHANGED
@@ -1500,7 +1500,8 @@ var schematic_sheet = z90.object({
1500
1500
  type: z90.literal("schematic_sheet"),
1501
1501
  schematic_sheet_id: getZodPrefixedIdWithDefault("schematic_sheet"),
1502
1502
  name: z90.string().optional(),
1503
- subcircuit_id: z90.string().optional()
1503
+ subcircuit_id: z90.string().optional(),
1504
+ outline_color: z90.string().optional()
1504
1505
  }).describe(
1505
1506
  "Defines a schematic sheet or page that components can be placed on"
1506
1507
  );