circuit-json 0.0.320 → 0.0.321

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
@@ -453,6 +453,7 @@ interface SourcePort {
453
453
  source_group_id?: string
454
454
  subcircuit_id?: string
455
455
  subcircuit_connectivity_map_key?: string
456
+ must_be_connected?: boolean
456
457
  }
457
458
  ```
458
459
 
package/dist/index.d.mts CHANGED
@@ -12240,6 +12240,7 @@ declare const source_port: z.ZodObject<{
12240
12240
  source_group_id: z.ZodOptional<z.ZodString>;
12241
12241
  subcircuit_id: z.ZodOptional<z.ZodString>;
12242
12242
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
12243
+ must_be_connected: z.ZodOptional<z.ZodBoolean>;
12243
12244
  }, "strip", z.ZodTypeAny, {
12244
12245
  type: "source_port";
12245
12246
  name: string;
@@ -12250,6 +12251,7 @@ declare const source_port: z.ZodObject<{
12250
12251
  subcircuit_connectivity_map_key?: string | undefined;
12251
12252
  source_group_id?: string | undefined;
12252
12253
  pin_number?: number | undefined;
12254
+ must_be_connected?: boolean | undefined;
12253
12255
  }, {
12254
12256
  type: "source_port";
12255
12257
  name: string;
@@ -12260,6 +12262,7 @@ declare const source_port: z.ZodObject<{
12260
12262
  subcircuit_connectivity_map_key?: string | undefined;
12261
12263
  source_group_id?: string | undefined;
12262
12264
  pin_number?: number | undefined;
12265
+ must_be_connected?: boolean | undefined;
12263
12266
  }>;
12264
12267
  type SourcePortInput = z.input<typeof source_port>;
12265
12268
  /**
@@ -12275,6 +12278,7 @@ interface SourcePort {
12275
12278
  source_group_id?: string;
12276
12279
  subcircuit_id?: string;
12277
12280
  subcircuit_connectivity_map_key?: string;
12281
+ must_be_connected?: boolean;
12278
12282
  }
12279
12283
 
12280
12284
  interface SourceTrace {
@@ -12785,6 +12789,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
12785
12789
  source_group_id: z.ZodOptional<z.ZodString>;
12786
12790
  subcircuit_id: z.ZodOptional<z.ZodString>;
12787
12791
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
12792
+ must_be_connected: z.ZodOptional<z.ZodBoolean>;
12788
12793
  }, "strip", z.ZodTypeAny, {
12789
12794
  type: "source_port";
12790
12795
  name: string;
@@ -12795,6 +12800,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
12795
12800
  subcircuit_connectivity_map_key?: string | undefined;
12796
12801
  source_group_id?: string | undefined;
12797
12802
  pin_number?: number | undefined;
12803
+ must_be_connected?: boolean | undefined;
12798
12804
  }, {
12799
12805
  type: "source_port";
12800
12806
  name: string;
@@ -12805,6 +12811,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
12805
12811
  subcircuit_connectivity_map_key?: string | undefined;
12806
12812
  source_group_id?: string | undefined;
12807
12813
  pin_number?: number | undefined;
12814
+ must_be_connected?: boolean | undefined;
12808
12815
  }>, z.ZodUnion<[z.ZodObject<{
12809
12816
  type: z.ZodLiteral<"source_component">;
12810
12817
  source_component_id: z.ZodString;
@@ -20719,6 +20726,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20719
20726
  source_group_id: z.ZodOptional<z.ZodString>;
20720
20727
  subcircuit_id: z.ZodOptional<z.ZodString>;
20721
20728
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
20729
+ must_be_connected: z.ZodOptional<z.ZodBoolean>;
20722
20730
  }, "strip", z.ZodTypeAny, {
20723
20731
  type: "source_port";
20724
20732
  name: string;
@@ -20729,6 +20737,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20729
20737
  subcircuit_connectivity_map_key?: string | undefined;
20730
20738
  source_group_id?: string | undefined;
20731
20739
  pin_number?: number | undefined;
20740
+ must_be_connected?: boolean | undefined;
20732
20741
  }, {
20733
20742
  type: "source_port";
20734
20743
  name: string;
@@ -20739,6 +20748,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20739
20748
  subcircuit_connectivity_map_key?: string | undefined;
20740
20749
  source_group_id?: string | undefined;
20741
20750
  pin_number?: number | undefined;
20751
+ must_be_connected?: boolean | undefined;
20742
20752
  }>, z.ZodUnion<[z.ZodObject<{
20743
20753
  type: z.ZodLiteral<"source_component">;
20744
20754
  source_component_id: z.ZodString;
package/dist/index.mjs CHANGED
@@ -677,7 +677,8 @@ var source_port = z37.object({
677
677
  source_component_id: z37.string().optional(),
678
678
  source_group_id: z37.string().optional(),
679
679
  subcircuit_id: z37.string().optional(),
680
- subcircuit_connectivity_map_key: z37.string().optional()
680
+ subcircuit_connectivity_map_key: z37.string().optional(),
681
+ must_be_connected: z37.boolean().optional()
681
682
  });
682
683
  expectTypesMatch(true);
683
684