circuit-json 0.0.245 → 0.0.246

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 CHANGED
@@ -9258,6 +9258,7 @@ declare const cad_component: z.ZodObject<{
9258
9258
  model_gltf_url: z.ZodOptional<z.ZodString>;
9259
9259
  model_glb_url: z.ZodOptional<z.ZodString>;
9260
9260
  model_step_url: z.ZodOptional<z.ZodString>;
9261
+ model_wrl_url: z.ZodOptional<z.ZodString>;
9261
9262
  model_jscad: z.ZodOptional<z.ZodAny>;
9262
9263
  }, "strip", z.ZodTypeAny, {
9263
9264
  type: "cad_component";
@@ -9288,6 +9289,7 @@ declare const cad_component: z.ZodObject<{
9288
9289
  model_gltf_url?: string | undefined;
9289
9290
  model_glb_url?: string | undefined;
9290
9291
  model_step_url?: string | undefined;
9292
+ model_wrl_url?: string | undefined;
9291
9293
  model_jscad?: any;
9292
9294
  }, {
9293
9295
  type: "cad_component";
@@ -9320,6 +9322,7 @@ declare const cad_component: z.ZodObject<{
9320
9322
  model_gltf_url?: string | undefined;
9321
9323
  model_glb_url?: string | undefined;
9322
9324
  model_step_url?: string | undefined;
9325
+ model_wrl_url?: string | undefined;
9323
9326
  model_jscad?: any;
9324
9327
  }>;
9325
9328
  type CadComponentInput = z.input<typeof cad_component>;
@@ -9340,6 +9343,7 @@ interface CadComponent {
9340
9343
  model_gltf_url?: string;
9341
9344
  model_glb_url?: string;
9342
9345
  model_step_url?: string;
9346
+ model_wrl_url?: string;
9343
9347
  model_jscad?: any;
9344
9348
  }
9345
9349
 
@@ -15323,6 +15327,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15323
15327
  model_gltf_url: z.ZodOptional<z.ZodString>;
15324
15328
  model_glb_url: z.ZodOptional<z.ZodString>;
15325
15329
  model_step_url: z.ZodOptional<z.ZodString>;
15330
+ model_wrl_url: z.ZodOptional<z.ZodString>;
15326
15331
  model_jscad: z.ZodOptional<z.ZodAny>;
15327
15332
  }, "strip", z.ZodTypeAny, {
15328
15333
  type: "cad_component";
@@ -15353,6 +15358,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15353
15358
  model_gltf_url?: string | undefined;
15354
15359
  model_glb_url?: string | undefined;
15355
15360
  model_step_url?: string | undefined;
15361
+ model_wrl_url?: string | undefined;
15356
15362
  model_jscad?: any;
15357
15363
  }, {
15358
15364
  type: "cad_component";
@@ -15385,6 +15391,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15385
15391
  model_gltf_url?: string | undefined;
15386
15392
  model_glb_url?: string | undefined;
15387
15393
  model_step_url?: string | undefined;
15394
+ model_wrl_url?: string | undefined;
15388
15395
  model_jscad?: any;
15389
15396
  }>, z.ZodUnion<[z.ZodObject<{
15390
15397
  type: z.ZodLiteral<"simulation_voltage_source">;
@@ -21260,6 +21267,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21260
21267
  model_gltf_url: z.ZodOptional<z.ZodString>;
21261
21268
  model_glb_url: z.ZodOptional<z.ZodString>;
21262
21269
  model_step_url: z.ZodOptional<z.ZodString>;
21270
+ model_wrl_url: z.ZodOptional<z.ZodString>;
21263
21271
  model_jscad: z.ZodOptional<z.ZodAny>;
21264
21272
  }, "strip", z.ZodTypeAny, {
21265
21273
  type: "cad_component";
@@ -21290,6 +21298,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21290
21298
  model_gltf_url?: string | undefined;
21291
21299
  model_glb_url?: string | undefined;
21292
21300
  model_step_url?: string | undefined;
21301
+ model_wrl_url?: string | undefined;
21293
21302
  model_jscad?: any;
21294
21303
  }, {
21295
21304
  type: "cad_component";
@@ -21322,6 +21331,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
21322
21331
  model_gltf_url?: string | undefined;
21323
21332
  model_glb_url?: string | undefined;
21324
21333
  model_step_url?: string | undefined;
21334
+ model_wrl_url?: string | undefined;
21325
21335
  model_jscad?: any;
21326
21336
  }>, z.ZodUnion<[z.ZodObject<{
21327
21337
  type: z.ZodLiteral<"simulation_voltage_source">;
package/dist/index.mjs CHANGED
@@ -2094,6 +2094,7 @@ var cad_component = z99.object({
2094
2094
  model_gltf_url: z99.string().optional(),
2095
2095
  model_glb_url: z99.string().optional(),
2096
2096
  model_step_url: z99.string().optional(),
2097
+ model_wrl_url: z99.string().optional(),
2097
2098
  model_jscad: z99.any().optional()
2098
2099
  }).describe("Defines a component on the PCB");
2099
2100
  expectTypesMatch(true);