circuit-json 0.0.328 → 0.0.329
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 +1 -0
- package/dist/index.d.mts +10 -0
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -12387,22 +12387,26 @@ interface SourceComponentInternalConnection {
|
|
|
12387
12387
|
source_component_internal_connection_id: string;
|
|
12388
12388
|
source_component_id: string;
|
|
12389
12389
|
source_port_ids: string[];
|
|
12390
|
+
subcircuit_id?: string;
|
|
12390
12391
|
}
|
|
12391
12392
|
declare const source_component_internal_connection: z.ZodObject<{
|
|
12392
12393
|
type: z.ZodLiteral<"source_component_internal_connection">;
|
|
12393
12394
|
source_component_internal_connection_id: z.ZodString;
|
|
12394
12395
|
source_component_id: z.ZodString;
|
|
12395
12396
|
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
12397
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12396
12398
|
}, "strip", z.ZodTypeAny, {
|
|
12397
12399
|
type: "source_component_internal_connection";
|
|
12398
12400
|
source_component_id: string;
|
|
12399
12401
|
source_component_internal_connection_id: string;
|
|
12400
12402
|
source_port_ids: string[];
|
|
12403
|
+
subcircuit_id?: string | undefined;
|
|
12401
12404
|
}, {
|
|
12402
12405
|
type: "source_component_internal_connection";
|
|
12403
12406
|
source_component_id: string;
|
|
12404
12407
|
source_component_internal_connection_id: string;
|
|
12405
12408
|
source_port_ids: string[];
|
|
12409
|
+
subcircuit_id?: string | undefined;
|
|
12406
12410
|
}>;
|
|
12407
12411
|
|
|
12408
12412
|
interface SourceTrace {
|
|
@@ -12945,16 +12949,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12945
12949
|
source_component_internal_connection_id: z.ZodString;
|
|
12946
12950
|
source_component_id: z.ZodString;
|
|
12947
12951
|
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
12952
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12948
12953
|
}, "strip", z.ZodTypeAny, {
|
|
12949
12954
|
type: "source_component_internal_connection";
|
|
12950
12955
|
source_component_id: string;
|
|
12951
12956
|
source_component_internal_connection_id: string;
|
|
12952
12957
|
source_port_ids: string[];
|
|
12958
|
+
subcircuit_id?: string | undefined;
|
|
12953
12959
|
}, {
|
|
12954
12960
|
type: "source_component_internal_connection";
|
|
12955
12961
|
source_component_id: string;
|
|
12956
12962
|
source_component_internal_connection_id: string;
|
|
12957
12963
|
source_port_ids: string[];
|
|
12964
|
+
subcircuit_id?: string | undefined;
|
|
12958
12965
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
12959
12966
|
type: z.ZodLiteral<"source_component">;
|
|
12960
12967
|
source_component_id: z.ZodString;
|
|
@@ -20950,16 +20957,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20950
20957
|
source_component_internal_connection_id: z.ZodString;
|
|
20951
20958
|
source_component_id: z.ZodString;
|
|
20952
20959
|
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
20960
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20953
20961
|
}, "strip", z.ZodTypeAny, {
|
|
20954
20962
|
type: "source_component_internal_connection";
|
|
20955
20963
|
source_component_id: string;
|
|
20956
20964
|
source_component_internal_connection_id: string;
|
|
20957
20965
|
source_port_ids: string[];
|
|
20966
|
+
subcircuit_id?: string | undefined;
|
|
20958
20967
|
}, {
|
|
20959
20968
|
type: "source_component_internal_connection";
|
|
20960
20969
|
source_component_id: string;
|
|
20961
20970
|
source_component_internal_connection_id: string;
|
|
20962
20971
|
source_port_ids: string[];
|
|
20972
|
+
subcircuit_id?: string | undefined;
|
|
20963
20973
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
20964
20974
|
type: z.ZodLiteral<"source_component">;
|
|
20965
20975
|
source_component_id: z.ZodString;
|
package/dist/index.mjs
CHANGED
|
@@ -696,7 +696,8 @@ var source_component_internal_connection = z39.object({
|
|
|
696
696
|
type: z39.literal("source_component_internal_connection"),
|
|
697
697
|
source_component_internal_connection_id: z39.string(),
|
|
698
698
|
source_component_id: z39.string(),
|
|
699
|
-
source_port_ids: z39.array(z39.string())
|
|
699
|
+
source_port_ids: z39.array(z39.string()),
|
|
700
|
+
subcircuit_id: z39.string().optional()
|
|
700
701
|
});
|
|
701
702
|
expectTypesMatch(true);
|
|
702
703
|
|