circuit-json 0.0.264 → 0.0.265

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
@@ -824,7 +824,7 @@ interface PcbComponent {
824
824
  rotation: Rotation
825
825
  width: Length
826
826
  height: Length
827
- do_not_place: boolean
827
+ do_not_place?: boolean
828
828
  pcb_group_id?: string
829
829
  }
830
830
  ```
package/dist/index.d.mts CHANGED
@@ -400,7 +400,7 @@ declare const pcb_component: z.ZodObject<{
400
400
  rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
401
401
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
402
402
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
403
- do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
403
+ do_not_place: z.ZodOptional<z.ZodBoolean>;
404
404
  subcircuit_id: z.ZodOptional<z.ZodString>;
405
405
  pcb_group_id: z.ZodOptional<z.ZodString>;
406
406
  }, "strip", z.ZodTypeAny, {
@@ -415,7 +415,7 @@ declare const pcb_component: z.ZodObject<{
415
415
  };
416
416
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
417
417
  rotation: number;
418
- do_not_place: boolean;
418
+ do_not_place?: boolean | undefined;
419
419
  subcircuit_id?: string | undefined;
420
420
  pcb_group_id?: string | undefined;
421
421
  }, {
@@ -450,7 +450,7 @@ interface PcbComponent {
450
450
  rotation: Rotation;
451
451
  width: Length;
452
452
  height: Length;
453
- do_not_place: boolean;
453
+ do_not_place?: boolean;
454
454
  pcb_group_id?: string;
455
455
  }
456
456
  /**
@@ -12095,7 +12095,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
12095
12095
  rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12096
12096
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12097
12097
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12098
- do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
12098
+ do_not_place: z.ZodOptional<z.ZodBoolean>;
12099
12099
  subcircuit_id: z.ZodOptional<z.ZodString>;
12100
12100
  pcb_group_id: z.ZodOptional<z.ZodString>;
12101
12101
  }, "strip", z.ZodTypeAny, {
@@ -12110,7 +12110,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
12110
12110
  };
12111
12111
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
12112
12112
  rotation: number;
12113
- do_not_place: boolean;
12113
+ do_not_place?: boolean | undefined;
12114
12114
  subcircuit_id?: string | undefined;
12115
12115
  pcb_group_id?: string | undefined;
12116
12116
  }, {
@@ -18469,7 +18469,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
18469
18469
  rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
18470
18470
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
18471
18471
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
18472
- do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
18472
+ do_not_place: z.ZodOptional<z.ZodBoolean>;
18473
18473
  subcircuit_id: z.ZodOptional<z.ZodString>;
18474
18474
  pcb_group_id: z.ZodOptional<z.ZodString>;
18475
18475
  }, "strip", z.ZodTypeAny, {
@@ -18484,7 +18484,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
18484
18484
  };
18485
18485
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
18486
18486
  rotation: number;
18487
- do_not_place: boolean;
18487
+ do_not_place?: boolean | undefined;
18488
18488
  subcircuit_id?: string | undefined;
18489
18489
  pcb_group_id?: string | undefined;
18490
18490
  }, {
package/dist/index.mjs CHANGED
@@ -1214,7 +1214,7 @@ var pcb_component = z66.object({
1214
1214
  rotation,
1215
1215
  width: length,
1216
1216
  height: length,
1217
- do_not_place: z66.boolean().optional().default(false),
1217
+ do_not_place: z66.boolean().optional(),
1218
1218
  subcircuit_id: z66.string().optional(),
1219
1219
  pcb_group_id: z66.string().optional()
1220
1220
  }).describe("Defines a component on the PCB");