circuit-json 0.0.431 → 0.0.432

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/README.md CHANGED
@@ -3015,6 +3015,7 @@ interface SchematicPath {
3015
3015
  schematic_symbol_id?: string
3016
3016
  fill_color?: string
3017
3017
  is_filled?: boolean
3018
+ is_dashed: boolean
3018
3019
  stroke_width?: number | null
3019
3020
  stroke_color?: string
3020
3021
  dash_length?: number
package/dist/index.d.mts CHANGED
@@ -12544,6 +12544,7 @@ interface SchematicPath {
12544
12544
  schematic_symbol_id?: string;
12545
12545
  fill_color?: string;
12546
12546
  is_filled?: boolean;
12547
+ is_dashed: boolean;
12547
12548
  stroke_width?: number | null;
12548
12549
  stroke_color?: string;
12549
12550
  dash_length?: number;
@@ -12558,6 +12559,7 @@ declare const schematic_path: z.ZodObject<{
12558
12559
  schematic_symbol_id: z.ZodOptional<z.ZodString>;
12559
12560
  fill_color: z.ZodOptional<z.ZodString>;
12560
12561
  is_filled: z.ZodOptional<z.ZodBoolean>;
12562
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
12561
12563
  stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
12562
12564
  stroke_color: z.ZodOptional<z.ZodString>;
12563
12565
  dash_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -12579,6 +12581,7 @@ declare const schematic_path: z.ZodObject<{
12579
12581
  x: number;
12580
12582
  y: number;
12581
12583
  }[];
12584
+ is_dashed: boolean;
12582
12585
  schematic_path_id: string;
12583
12586
  subcircuit_id?: string | undefined;
12584
12587
  stroke_width?: number | null | undefined;
@@ -12598,6 +12601,7 @@ declare const schematic_path: z.ZodObject<{
12598
12601
  subcircuit_id?: string | undefined;
12599
12602
  stroke_width?: string | number | null | undefined;
12600
12603
  is_filled?: boolean | undefined;
12604
+ is_dashed?: boolean | undefined;
12601
12605
  schematic_component_id?: string | undefined;
12602
12606
  schematic_symbol_id?: string | undefined;
12603
12607
  schematic_path_id?: string | undefined;
@@ -50533,6 +50537,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
50533
50537
  schematic_symbol_id: z.ZodOptional<z.ZodString>;
50534
50538
  fill_color: z.ZodOptional<z.ZodString>;
50535
50539
  is_filled: z.ZodOptional<z.ZodBoolean>;
50540
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
50536
50541
  stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
50537
50542
  stroke_color: z.ZodOptional<z.ZodString>;
50538
50543
  dash_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -50554,6 +50559,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
50554
50559
  x: number;
50555
50560
  y: number;
50556
50561
  }[];
50562
+ is_dashed: boolean;
50557
50563
  schematic_path_id: string;
50558
50564
  subcircuit_id?: string | undefined;
50559
50565
  stroke_width?: number | null | undefined;
@@ -50573,6 +50579,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
50573
50579
  subcircuit_id?: string | undefined;
50574
50580
  stroke_width?: string | number | null | undefined;
50575
50581
  is_filled?: boolean | undefined;
50582
+ is_dashed?: boolean | undefined;
50576
50583
  schematic_component_id?: string | undefined;
50577
50584
  schematic_symbol_id?: string | undefined;
50578
50585
  schematic_path_id?: string | undefined;
@@ -68919,6 +68926,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
68919
68926
  schematic_symbol_id: z.ZodOptional<z.ZodString>;
68920
68927
  fill_color: z.ZodOptional<z.ZodString>;
68921
68928
  is_filled: z.ZodOptional<z.ZodBoolean>;
68929
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
68922
68930
  stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
68923
68931
  stroke_color: z.ZodOptional<z.ZodString>;
68924
68932
  dash_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -68940,6 +68948,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
68940
68948
  x: number;
68941
68949
  y: number;
68942
68950
  }[];
68951
+ is_dashed: boolean;
68943
68952
  schematic_path_id: string;
68944
68953
  subcircuit_id?: string | undefined;
68945
68954
  stroke_width?: number | null | undefined;
@@ -68959,6 +68968,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
68959
68968
  subcircuit_id?: string | undefined;
68960
68969
  stroke_width?: string | number | null | undefined;
68961
68970
  is_filled?: boolean | undefined;
68971
+ is_dashed?: boolean | undefined;
68962
68972
  schematic_component_id?: string | undefined;
68963
68973
  schematic_symbol_id?: string | undefined;
68964
68974
  schematic_path_id?: string | undefined;
package/dist/index.mjs CHANGED
@@ -1264,6 +1264,7 @@ var schematic_path = z69.object({
1264
1264
  schematic_symbol_id: z69.string().optional(),
1265
1265
  fill_color: z69.string().optional(),
1266
1266
  is_filled: z69.boolean().optional(),
1267
+ is_dashed: z69.boolean().default(false),
1267
1268
  stroke_width: distance.nullable().optional(),
1268
1269
  stroke_color: z69.string().optional(),
1269
1270
  dash_length: distance.optional(),