circuit-json 0.0.373 → 0.0.374
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 +90 -0
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -21264,6 +21264,51 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21264
21264
|
pcb_group_id?: string | undefined;
|
|
21265
21265
|
color?: string | undefined;
|
|
21266
21266
|
pcb_courtyard_polygon_id?: string | undefined;
|
|
21267
|
+
}>, z.ZodObject<{
|
|
21268
|
+
type: z.ZodLiteral<"pcb_courtyard_circle">;
|
|
21269
|
+
pcb_courtyard_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
21270
|
+
pcb_component_id: z.ZodString;
|
|
21271
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
21272
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21273
|
+
center: z.ZodObject<{
|
|
21274
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21275
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21276
|
+
}, "strip", z.ZodTypeAny, {
|
|
21277
|
+
x: number;
|
|
21278
|
+
y: number;
|
|
21279
|
+
}, {
|
|
21280
|
+
x: string | number;
|
|
21281
|
+
y: string | number;
|
|
21282
|
+
}>;
|
|
21283
|
+
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21284
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
21285
|
+
color: z.ZodOptional<z.ZodString>;
|
|
21286
|
+
}, "strip", z.ZodTypeAny, {
|
|
21287
|
+
type: "pcb_courtyard_circle";
|
|
21288
|
+
pcb_component_id: string;
|
|
21289
|
+
center: {
|
|
21290
|
+
x: number;
|
|
21291
|
+
y: number;
|
|
21292
|
+
};
|
|
21293
|
+
layer: "top" | "bottom";
|
|
21294
|
+
radius: number;
|
|
21295
|
+
pcb_courtyard_circle_id: string;
|
|
21296
|
+
subcircuit_id?: string | undefined;
|
|
21297
|
+
pcb_group_id?: string | undefined;
|
|
21298
|
+
color?: string | undefined;
|
|
21299
|
+
}, {
|
|
21300
|
+
type: "pcb_courtyard_circle";
|
|
21301
|
+
pcb_component_id: string;
|
|
21302
|
+
center: {
|
|
21303
|
+
x: string | number;
|
|
21304
|
+
y: string | number;
|
|
21305
|
+
};
|
|
21306
|
+
layer: "top" | "bottom";
|
|
21307
|
+
radius: string | number;
|
|
21308
|
+
subcircuit_id?: string | undefined;
|
|
21309
|
+
pcb_group_id?: string | undefined;
|
|
21310
|
+
color?: string | undefined;
|
|
21311
|
+
pcb_courtyard_circle_id?: string | undefined;
|
|
21267
21312
|
}>, z.ZodObject<{
|
|
21268
21313
|
type: z.ZodLiteral<"schematic_box">;
|
|
21269
21314
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
@@ -30063,6 +30108,51 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30063
30108
|
pcb_group_id?: string | undefined;
|
|
30064
30109
|
color?: string | undefined;
|
|
30065
30110
|
pcb_courtyard_polygon_id?: string | undefined;
|
|
30111
|
+
}>, z.ZodObject<{
|
|
30112
|
+
type: z.ZodLiteral<"pcb_courtyard_circle">;
|
|
30113
|
+
pcb_courtyard_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
30114
|
+
pcb_component_id: z.ZodString;
|
|
30115
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
30116
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
30117
|
+
center: z.ZodObject<{
|
|
30118
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
30119
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
30120
|
+
}, "strip", z.ZodTypeAny, {
|
|
30121
|
+
x: number;
|
|
30122
|
+
y: number;
|
|
30123
|
+
}, {
|
|
30124
|
+
x: string | number;
|
|
30125
|
+
y: string | number;
|
|
30126
|
+
}>;
|
|
30127
|
+
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
30128
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
30129
|
+
color: z.ZodOptional<z.ZodString>;
|
|
30130
|
+
}, "strip", z.ZodTypeAny, {
|
|
30131
|
+
type: "pcb_courtyard_circle";
|
|
30132
|
+
pcb_component_id: string;
|
|
30133
|
+
center: {
|
|
30134
|
+
x: number;
|
|
30135
|
+
y: number;
|
|
30136
|
+
};
|
|
30137
|
+
layer: "top" | "bottom";
|
|
30138
|
+
radius: number;
|
|
30139
|
+
pcb_courtyard_circle_id: string;
|
|
30140
|
+
subcircuit_id?: string | undefined;
|
|
30141
|
+
pcb_group_id?: string | undefined;
|
|
30142
|
+
color?: string | undefined;
|
|
30143
|
+
}, {
|
|
30144
|
+
type: "pcb_courtyard_circle";
|
|
30145
|
+
pcb_component_id: string;
|
|
30146
|
+
center: {
|
|
30147
|
+
x: string | number;
|
|
30148
|
+
y: string | number;
|
|
30149
|
+
};
|
|
30150
|
+
layer: "top" | "bottom";
|
|
30151
|
+
radius: string | number;
|
|
30152
|
+
subcircuit_id?: string | undefined;
|
|
30153
|
+
pcb_group_id?: string | undefined;
|
|
30154
|
+
color?: string | undefined;
|
|
30155
|
+
pcb_courtyard_circle_id?: string | undefined;
|
|
30066
30156
|
}>, z.ZodObject<{
|
|
30067
30157
|
type: z.ZodLiteral<"schematic_box">;
|
|
30068
30158
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|