circuit-json 0.0.272 → 0.0.273

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
@@ -283,6 +283,7 @@ interface SourceGroup {
283
283
  is_subcircuit?: boolean
284
284
  show_as_schematic_box?: boolean
285
285
  name?: string
286
+ was_automatically_named?: boolean
286
287
  }
287
288
  ```
288
289
 
package/dist/index.d.mts CHANGED
@@ -9696,6 +9696,7 @@ declare const source_group: z.ZodObject<{
9696
9696
  is_subcircuit: z.ZodOptional<z.ZodBoolean>;
9697
9697
  show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
9698
9698
  name: z.ZodOptional<z.ZodString>;
9699
+ was_automatically_named: z.ZodOptional<z.ZodBoolean>;
9699
9700
  }, "strip", z.ZodTypeAny, {
9700
9701
  type: "source_group";
9701
9702
  source_group_id: string;
@@ -9705,6 +9706,7 @@ declare const source_group: z.ZodObject<{
9705
9706
  show_as_schematic_box?: boolean | undefined;
9706
9707
  parent_subcircuit_id?: string | undefined;
9707
9708
  parent_source_group_id?: string | undefined;
9709
+ was_automatically_named?: boolean | undefined;
9708
9710
  }, {
9709
9711
  type: "source_group";
9710
9712
  source_group_id: string;
@@ -9714,6 +9716,7 @@ declare const source_group: z.ZodObject<{
9714
9716
  show_as_schematic_box?: boolean | undefined;
9715
9717
  parent_subcircuit_id?: string | undefined;
9716
9718
  parent_source_group_id?: string | undefined;
9719
+ was_automatically_named?: boolean | undefined;
9717
9720
  }>;
9718
9721
  type SourceGroupInput = z.input<typeof source_group>;
9719
9722
  interface SourceGroup {
@@ -9725,6 +9728,7 @@ interface SourceGroup {
9725
9728
  is_subcircuit?: boolean;
9726
9729
  show_as_schematic_box?: boolean;
9727
9730
  name?: string;
9731
+ was_automatically_named?: boolean;
9728
9732
  }
9729
9733
 
9730
9734
  declare const source_net: z.ZodObject<{
@@ -11471,6 +11475,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11471
11475
  is_subcircuit: z.ZodOptional<z.ZodBoolean>;
11472
11476
  show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
11473
11477
  name: z.ZodOptional<z.ZodString>;
11478
+ was_automatically_named: z.ZodOptional<z.ZodBoolean>;
11474
11479
  }, "strip", z.ZodTypeAny, {
11475
11480
  type: "source_group";
11476
11481
  source_group_id: string;
@@ -11480,6 +11485,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11480
11485
  show_as_schematic_box?: boolean | undefined;
11481
11486
  parent_subcircuit_id?: string | undefined;
11482
11487
  parent_source_group_id?: string | undefined;
11488
+ was_automatically_named?: boolean | undefined;
11483
11489
  }, {
11484
11490
  type: "source_group";
11485
11491
  source_group_id: string;
@@ -11489,6 +11495,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11489
11495
  show_as_schematic_box?: boolean | undefined;
11490
11496
  parent_subcircuit_id?: string | undefined;
11491
11497
  parent_source_group_id?: string | undefined;
11498
+ was_automatically_named?: boolean | undefined;
11492
11499
  }>, z.ZodObject<{
11493
11500
  type: z.ZodLiteral<"source_component">;
11494
11501
  source_component_id: z.ZodString;
@@ -18009,6 +18016,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
18009
18016
  is_subcircuit: z.ZodOptional<z.ZodBoolean>;
18010
18017
  show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
18011
18018
  name: z.ZodOptional<z.ZodString>;
18019
+ was_automatically_named: z.ZodOptional<z.ZodBoolean>;
18012
18020
  }, "strip", z.ZodTypeAny, {
18013
18021
  type: "source_group";
18014
18022
  source_group_id: string;
@@ -18018,6 +18026,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
18018
18026
  show_as_schematic_box?: boolean | undefined;
18019
18027
  parent_subcircuit_id?: string | undefined;
18020
18028
  parent_source_group_id?: string | undefined;
18029
+ was_automatically_named?: boolean | undefined;
18021
18030
  }, {
18022
18031
  type: "source_group";
18023
18032
  source_group_id: string;
@@ -18027,6 +18036,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
18027
18036
  show_as_schematic_box?: boolean | undefined;
18028
18037
  parent_subcircuit_id?: string | undefined;
18029
18038
  parent_source_group_id?: string | undefined;
18039
+ was_automatically_named?: boolean | undefined;
18030
18040
  }>, z.ZodObject<{
18031
18041
  type: z.ZodLiteral<"source_component">;
18032
18042
  source_component_id: z.ZodString;
package/dist/index.mjs CHANGED
@@ -695,7 +695,8 @@ var source_group = z38.object({
695
695
  parent_source_group_id: z38.string().optional(),
696
696
  is_subcircuit: z38.boolean().optional(),
697
697
  show_as_schematic_box: z38.boolean().optional(),
698
- name: z38.string().optional()
698
+ name: z38.string().optional(),
699
+ was_automatically_named: z38.boolean().optional()
699
700
  });
700
701
  expectTypesMatch(true);
701
702