circuit-json 0.0.310 → 0.0.312
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 +3 -4
- package/dist/index.d.mts +88 -46
- package/dist/index.mjs +4 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1120,6 +1120,8 @@ interface PcbCutoutRect {
|
|
|
1120
1120
|
pcb_cutout_id: string
|
|
1121
1121
|
pcb_group_id?: string
|
|
1122
1122
|
subcircuit_id?: string
|
|
1123
|
+
pcb_board_id?: string
|
|
1124
|
+
pcb_panel_id?: string
|
|
1123
1125
|
shape: "rect"
|
|
1124
1126
|
center: Point
|
|
1125
1127
|
width: Length
|
|
@@ -2594,7 +2596,6 @@ interface SchematicVoltageProbe {
|
|
|
2594
2596
|
position: Point
|
|
2595
2597
|
schematic_trace_id: string
|
|
2596
2598
|
voltage?: number
|
|
2597
|
-
name?: string
|
|
2598
2599
|
subcircuit_id?: string
|
|
2599
2600
|
}
|
|
2600
2601
|
```
|
|
@@ -2644,8 +2645,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
2644
2645
|
simulation_experiment_id: string
|
|
2645
2646
|
timestamps_ms?: number[]
|
|
2646
2647
|
voltage_levels: number[]
|
|
2647
|
-
|
|
2648
|
-
simulation_voltage_probe_id?: string
|
|
2648
|
+
source_component_id?: string
|
|
2649
2649
|
subcircuit_connectivity_map_key?: string
|
|
2650
2650
|
time_per_step: number
|
|
2651
2651
|
start_time_ms: number
|
|
@@ -2686,7 +2686,6 @@ interface SimulationVoltageProbe {
|
|
|
2686
2686
|
source_component_id?: string
|
|
2687
2687
|
source_port_id?: string
|
|
2688
2688
|
source_net_id?: string
|
|
2689
|
-
name?: string
|
|
2690
2689
|
subcircuit_id?: string
|
|
2691
2690
|
}
|
|
2692
2691
|
```
|
package/dist/index.d.mts
CHANGED
|
@@ -5198,6 +5198,8 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5198
5198
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5199
5199
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5200
5200
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5201
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5202
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5201
5203
|
} & {
|
|
5202
5204
|
shape: z.ZodLiteral<"rect">;
|
|
5203
5205
|
center: z.ZodObject<{
|
|
@@ -5226,6 +5228,8 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5226
5228
|
rotation?: number | undefined;
|
|
5227
5229
|
subcircuit_id?: string | undefined;
|
|
5228
5230
|
pcb_group_id?: string | undefined;
|
|
5231
|
+
pcb_board_id?: string | undefined;
|
|
5232
|
+
pcb_panel_id?: string | undefined;
|
|
5229
5233
|
}, {
|
|
5230
5234
|
type: "pcb_cutout";
|
|
5231
5235
|
width: string | number;
|
|
@@ -5238,6 +5242,8 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5238
5242
|
rotation?: string | number | undefined;
|
|
5239
5243
|
subcircuit_id?: string | undefined;
|
|
5240
5244
|
pcb_group_id?: string | undefined;
|
|
5245
|
+
pcb_board_id?: string | undefined;
|
|
5246
|
+
pcb_panel_id?: string | undefined;
|
|
5241
5247
|
pcb_cutout_id?: string | undefined;
|
|
5242
5248
|
}>;
|
|
5243
5249
|
type PcbCutoutRectInput = z.input<typeof pcb_cutout_rect>;
|
|
@@ -5249,6 +5255,8 @@ interface PcbCutoutRect {
|
|
|
5249
5255
|
pcb_cutout_id: string;
|
|
5250
5256
|
pcb_group_id?: string;
|
|
5251
5257
|
subcircuit_id?: string;
|
|
5258
|
+
pcb_board_id?: string;
|
|
5259
|
+
pcb_panel_id?: string;
|
|
5252
5260
|
shape: "rect";
|
|
5253
5261
|
center: Point;
|
|
5254
5262
|
width: Length;
|
|
@@ -5260,6 +5268,8 @@ declare const pcb_cutout_circle: z.ZodObject<{
|
|
|
5260
5268
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5261
5269
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5262
5270
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5271
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5272
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5263
5273
|
} & {
|
|
5264
5274
|
shape: z.ZodLiteral<"circle">;
|
|
5265
5275
|
center: z.ZodObject<{
|
|
@@ -5284,6 +5294,8 @@ declare const pcb_cutout_circle: z.ZodObject<{
|
|
|
5284
5294
|
pcb_cutout_id: string;
|
|
5285
5295
|
subcircuit_id?: string | undefined;
|
|
5286
5296
|
pcb_group_id?: string | undefined;
|
|
5297
|
+
pcb_board_id?: string | undefined;
|
|
5298
|
+
pcb_panel_id?: string | undefined;
|
|
5287
5299
|
}, {
|
|
5288
5300
|
type: "pcb_cutout";
|
|
5289
5301
|
center: {
|
|
@@ -5294,6 +5306,8 @@ declare const pcb_cutout_circle: z.ZodObject<{
|
|
|
5294
5306
|
radius: string | number;
|
|
5295
5307
|
subcircuit_id?: string | undefined;
|
|
5296
5308
|
pcb_group_id?: string | undefined;
|
|
5309
|
+
pcb_board_id?: string | undefined;
|
|
5310
|
+
pcb_panel_id?: string | undefined;
|
|
5297
5311
|
pcb_cutout_id?: string | undefined;
|
|
5298
5312
|
}>;
|
|
5299
5313
|
type PcbCutoutCircleInput = z.input<typeof pcb_cutout_circle>;
|
|
@@ -5305,6 +5319,8 @@ interface PcbCutoutCircle {
|
|
|
5305
5319
|
pcb_cutout_id: string;
|
|
5306
5320
|
pcb_group_id?: string;
|
|
5307
5321
|
subcircuit_id?: string;
|
|
5322
|
+
pcb_board_id?: string;
|
|
5323
|
+
pcb_panel_id?: string;
|
|
5308
5324
|
shape: "circle";
|
|
5309
5325
|
center: Point;
|
|
5310
5326
|
radius: Length;
|
|
@@ -5314,6 +5330,8 @@ declare const pcb_cutout_polygon: z.ZodObject<{
|
|
|
5314
5330
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5315
5331
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5316
5332
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5333
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5334
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5317
5335
|
} & {
|
|
5318
5336
|
shape: z.ZodLiteral<"polygon">;
|
|
5319
5337
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -5336,6 +5354,8 @@ declare const pcb_cutout_polygon: z.ZodObject<{
|
|
|
5336
5354
|
pcb_cutout_id: string;
|
|
5337
5355
|
subcircuit_id?: string | undefined;
|
|
5338
5356
|
pcb_group_id?: string | undefined;
|
|
5357
|
+
pcb_board_id?: string | undefined;
|
|
5358
|
+
pcb_panel_id?: string | undefined;
|
|
5339
5359
|
}, {
|
|
5340
5360
|
type: "pcb_cutout";
|
|
5341
5361
|
shape: "polygon";
|
|
@@ -5345,6 +5365,8 @@ declare const pcb_cutout_polygon: z.ZodObject<{
|
|
|
5345
5365
|
}[];
|
|
5346
5366
|
subcircuit_id?: string | undefined;
|
|
5347
5367
|
pcb_group_id?: string | undefined;
|
|
5368
|
+
pcb_board_id?: string | undefined;
|
|
5369
|
+
pcb_panel_id?: string | undefined;
|
|
5348
5370
|
pcb_cutout_id?: string | undefined;
|
|
5349
5371
|
}>;
|
|
5350
5372
|
type PcbCutoutPolygonInput = z.input<typeof pcb_cutout_polygon>;
|
|
@@ -5357,6 +5379,8 @@ interface PcbCutoutPolygon {
|
|
|
5357
5379
|
pcb_cutout_id: string;
|
|
5358
5380
|
pcb_group_id?: string;
|
|
5359
5381
|
subcircuit_id?: string;
|
|
5382
|
+
pcb_board_id?: string;
|
|
5383
|
+
pcb_panel_id?: string;
|
|
5360
5384
|
shape: "polygon";
|
|
5361
5385
|
points: Point[];
|
|
5362
5386
|
}
|
|
@@ -5365,6 +5389,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5365
5389
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5366
5390
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5367
5391
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5392
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5393
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5368
5394
|
} & {
|
|
5369
5395
|
shape: z.ZodLiteral<"rect">;
|
|
5370
5396
|
center: z.ZodObject<{
|
|
@@ -5393,6 +5419,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5393
5419
|
rotation?: number | undefined;
|
|
5394
5420
|
subcircuit_id?: string | undefined;
|
|
5395
5421
|
pcb_group_id?: string | undefined;
|
|
5422
|
+
pcb_board_id?: string | undefined;
|
|
5423
|
+
pcb_panel_id?: string | undefined;
|
|
5396
5424
|
}, {
|
|
5397
5425
|
type: "pcb_cutout";
|
|
5398
5426
|
width: string | number;
|
|
@@ -5405,12 +5433,16 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5405
5433
|
rotation?: string | number | undefined;
|
|
5406
5434
|
subcircuit_id?: string | undefined;
|
|
5407
5435
|
pcb_group_id?: string | undefined;
|
|
5436
|
+
pcb_board_id?: string | undefined;
|
|
5437
|
+
pcb_panel_id?: string | undefined;
|
|
5408
5438
|
pcb_cutout_id?: string | undefined;
|
|
5409
5439
|
}>, z.ZodObject<{
|
|
5410
5440
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
5411
5441
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5412
5442
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5413
5443
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5444
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5445
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5414
5446
|
} & {
|
|
5415
5447
|
shape: z.ZodLiteral<"circle">;
|
|
5416
5448
|
center: z.ZodObject<{
|
|
@@ -5435,6 +5467,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5435
5467
|
pcb_cutout_id: string;
|
|
5436
5468
|
subcircuit_id?: string | undefined;
|
|
5437
5469
|
pcb_group_id?: string | undefined;
|
|
5470
|
+
pcb_board_id?: string | undefined;
|
|
5471
|
+
pcb_panel_id?: string | undefined;
|
|
5438
5472
|
}, {
|
|
5439
5473
|
type: "pcb_cutout";
|
|
5440
5474
|
center: {
|
|
@@ -5445,12 +5479,16 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5445
5479
|
radius: string | number;
|
|
5446
5480
|
subcircuit_id?: string | undefined;
|
|
5447
5481
|
pcb_group_id?: string | undefined;
|
|
5482
|
+
pcb_board_id?: string | undefined;
|
|
5483
|
+
pcb_panel_id?: string | undefined;
|
|
5448
5484
|
pcb_cutout_id?: string | undefined;
|
|
5449
5485
|
}>, z.ZodObject<{
|
|
5450
5486
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
5451
5487
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5452
5488
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5453
5489
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5490
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5491
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5454
5492
|
} & {
|
|
5455
5493
|
shape: z.ZodLiteral<"polygon">;
|
|
5456
5494
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -5473,6 +5511,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5473
5511
|
pcb_cutout_id: string;
|
|
5474
5512
|
subcircuit_id?: string | undefined;
|
|
5475
5513
|
pcb_group_id?: string | undefined;
|
|
5514
|
+
pcb_board_id?: string | undefined;
|
|
5515
|
+
pcb_panel_id?: string | undefined;
|
|
5476
5516
|
}, {
|
|
5477
5517
|
type: "pcb_cutout";
|
|
5478
5518
|
shape: "polygon";
|
|
@@ -5482,6 +5522,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5482
5522
|
}[];
|
|
5483
5523
|
subcircuit_id?: string | undefined;
|
|
5484
5524
|
pcb_group_id?: string | undefined;
|
|
5525
|
+
pcb_board_id?: string | undefined;
|
|
5526
|
+
pcb_panel_id?: string | undefined;
|
|
5485
5527
|
pcb_cutout_id?: string | undefined;
|
|
5486
5528
|
}>]>;
|
|
5487
5529
|
type PcbCutoutInput = z.input<typeof pcb_cutout>;
|
|
@@ -8675,7 +8717,6 @@ interface SchematicVoltageProbe {
|
|
|
8675
8717
|
position: Point;
|
|
8676
8718
|
schematic_trace_id: string;
|
|
8677
8719
|
voltage?: number;
|
|
8678
|
-
name?: string;
|
|
8679
8720
|
subcircuit_id?: string;
|
|
8680
8721
|
}
|
|
8681
8722
|
declare const schematic_voltage_probe: z.ZodObject<{
|
|
@@ -8694,7 +8735,6 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8694
8735
|
}>;
|
|
8695
8736
|
schematic_trace_id: z.ZodString;
|
|
8696
8737
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8697
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8698
8738
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8699
8739
|
}, "strip", z.ZodTypeAny, {
|
|
8700
8740
|
type: "schematic_voltage_probe";
|
|
@@ -8704,7 +8744,6 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8704
8744
|
y: number;
|
|
8705
8745
|
};
|
|
8706
8746
|
schematic_voltage_probe_id: string;
|
|
8707
|
-
name?: string | undefined;
|
|
8708
8747
|
source_component_id?: string | undefined;
|
|
8709
8748
|
subcircuit_id?: string | undefined;
|
|
8710
8749
|
voltage?: number | undefined;
|
|
@@ -8716,7 +8755,6 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8716
8755
|
y: string | number;
|
|
8717
8756
|
};
|
|
8718
8757
|
schematic_voltage_probe_id: string;
|
|
8719
|
-
name?: string | undefined;
|
|
8720
8758
|
source_component_id?: string | undefined;
|
|
8721
8759
|
subcircuit_id?: string | undefined;
|
|
8722
8760
|
voltage?: string | number | undefined;
|
|
@@ -9242,8 +9280,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
9242
9280
|
simulation_experiment_id: string;
|
|
9243
9281
|
timestamps_ms?: number[];
|
|
9244
9282
|
voltage_levels: number[];
|
|
9245
|
-
|
|
9246
|
-
simulation_voltage_probe_id?: string;
|
|
9283
|
+
source_component_id?: string;
|
|
9247
9284
|
subcircuit_connectivity_map_key?: string;
|
|
9248
9285
|
time_per_step: number;
|
|
9249
9286
|
start_time_ms: number;
|
|
@@ -9256,8 +9293,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9256
9293
|
simulation_experiment_id: z.ZodString;
|
|
9257
9294
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
9258
9295
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
9259
|
-
|
|
9260
|
-
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
9296
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
9261
9297
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
9262
9298
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
9263
9299
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -9272,10 +9308,9 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9272
9308
|
simulation_transient_voltage_graph_id: string;
|
|
9273
9309
|
voltage_levels: number[];
|
|
9274
9310
|
name?: string | undefined;
|
|
9311
|
+
source_component_id?: string | undefined;
|
|
9275
9312
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
9276
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
9277
9313
|
timestamps_ms?: number[] | undefined;
|
|
9278
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
9279
9314
|
}, {
|
|
9280
9315
|
type: "simulation_transient_voltage_graph";
|
|
9281
9316
|
simulation_experiment_id: string;
|
|
@@ -9284,11 +9319,10 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9284
9319
|
end_time_ms: string | number;
|
|
9285
9320
|
voltage_levels: number[];
|
|
9286
9321
|
name?: string | undefined;
|
|
9322
|
+
source_component_id?: string | undefined;
|
|
9287
9323
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
9288
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
9289
9324
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
9290
9325
|
timestamps_ms?: number[] | undefined;
|
|
9291
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
9292
9326
|
}>;
|
|
9293
9327
|
type SimulationTransientVoltageGraphInput = z.input<typeof simulation_transient_voltage_graph>;
|
|
9294
9328
|
|
|
@@ -9334,19 +9368,16 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9334
9368
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
9335
9369
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
9336
9370
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
9337
|
-
name: z.ZodOptional<z.ZodString>;
|
|
9338
9371
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9339
9372
|
}, "strip", z.ZodTypeAny, {
|
|
9340
9373
|
type: "simulation_voltage_probe";
|
|
9341
9374
|
simulation_voltage_probe_id: string;
|
|
9342
|
-
name?: string | undefined;
|
|
9343
9375
|
source_component_id?: string | undefined;
|
|
9344
9376
|
subcircuit_id?: string | undefined;
|
|
9345
9377
|
source_port_id?: string | undefined;
|
|
9346
9378
|
source_net_id?: string | undefined;
|
|
9347
9379
|
}, {
|
|
9348
9380
|
type: "simulation_voltage_probe";
|
|
9349
|
-
name?: string | undefined;
|
|
9350
9381
|
source_component_id?: string | undefined;
|
|
9351
9382
|
subcircuit_id?: string | undefined;
|
|
9352
9383
|
source_port_id?: string | undefined;
|
|
@@ -9355,14 +9386,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9355
9386
|
}>, {
|
|
9356
9387
|
type: "simulation_voltage_probe";
|
|
9357
9388
|
simulation_voltage_probe_id: string;
|
|
9358
|
-
name?: string | undefined;
|
|
9359
9389
|
source_component_id?: string | undefined;
|
|
9360
9390
|
subcircuit_id?: string | undefined;
|
|
9361
9391
|
source_port_id?: string | undefined;
|
|
9362
9392
|
source_net_id?: string | undefined;
|
|
9363
9393
|
}, {
|
|
9364
9394
|
type: "simulation_voltage_probe";
|
|
9365
|
-
name?: string | undefined;
|
|
9366
9395
|
source_component_id?: string | undefined;
|
|
9367
9396
|
subcircuit_id?: string | undefined;
|
|
9368
9397
|
source_port_id?: string | undefined;
|
|
@@ -9379,7 +9408,6 @@ interface SimulationVoltageProbe {
|
|
|
9379
9408
|
source_component_id?: string;
|
|
9380
9409
|
source_port_id?: string;
|
|
9381
9410
|
source_net_id?: string;
|
|
9382
|
-
name?: string;
|
|
9383
9411
|
subcircuit_id?: string;
|
|
9384
9412
|
}
|
|
9385
9413
|
|
|
@@ -17732,6 +17760,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17732
17760
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17733
17761
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17734
17762
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17763
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
17764
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
17735
17765
|
} & {
|
|
17736
17766
|
shape: z.ZodLiteral<"rect">;
|
|
17737
17767
|
center: z.ZodObject<{
|
|
@@ -17760,6 +17790,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17760
17790
|
rotation?: number | undefined;
|
|
17761
17791
|
subcircuit_id?: string | undefined;
|
|
17762
17792
|
pcb_group_id?: string | undefined;
|
|
17793
|
+
pcb_board_id?: string | undefined;
|
|
17794
|
+
pcb_panel_id?: string | undefined;
|
|
17763
17795
|
}, {
|
|
17764
17796
|
type: "pcb_cutout";
|
|
17765
17797
|
width: string | number;
|
|
@@ -17772,12 +17804,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17772
17804
|
rotation?: string | number | undefined;
|
|
17773
17805
|
subcircuit_id?: string | undefined;
|
|
17774
17806
|
pcb_group_id?: string | undefined;
|
|
17807
|
+
pcb_board_id?: string | undefined;
|
|
17808
|
+
pcb_panel_id?: string | undefined;
|
|
17775
17809
|
pcb_cutout_id?: string | undefined;
|
|
17776
17810
|
}>, z.ZodObject<{
|
|
17777
17811
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
17778
17812
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17779
17813
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17780
17814
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17815
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
17816
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
17781
17817
|
} & {
|
|
17782
17818
|
shape: z.ZodLiteral<"circle">;
|
|
17783
17819
|
center: z.ZodObject<{
|
|
@@ -17802,6 +17838,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17802
17838
|
pcb_cutout_id: string;
|
|
17803
17839
|
subcircuit_id?: string | undefined;
|
|
17804
17840
|
pcb_group_id?: string | undefined;
|
|
17841
|
+
pcb_board_id?: string | undefined;
|
|
17842
|
+
pcb_panel_id?: string | undefined;
|
|
17805
17843
|
}, {
|
|
17806
17844
|
type: "pcb_cutout";
|
|
17807
17845
|
center: {
|
|
@@ -17812,12 +17850,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17812
17850
|
radius: string | number;
|
|
17813
17851
|
subcircuit_id?: string | undefined;
|
|
17814
17852
|
pcb_group_id?: string | undefined;
|
|
17853
|
+
pcb_board_id?: string | undefined;
|
|
17854
|
+
pcb_panel_id?: string | undefined;
|
|
17815
17855
|
pcb_cutout_id?: string | undefined;
|
|
17816
17856
|
}>, z.ZodObject<{
|
|
17817
17857
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
17818
17858
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17819
17859
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17820
17860
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17861
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
17862
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
17821
17863
|
} & {
|
|
17822
17864
|
shape: z.ZodLiteral<"polygon">;
|
|
17823
17865
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -17840,6 +17882,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17840
17882
|
pcb_cutout_id: string;
|
|
17841
17883
|
subcircuit_id?: string | undefined;
|
|
17842
17884
|
pcb_group_id?: string | undefined;
|
|
17885
|
+
pcb_board_id?: string | undefined;
|
|
17886
|
+
pcb_panel_id?: string | undefined;
|
|
17843
17887
|
}, {
|
|
17844
17888
|
type: "pcb_cutout";
|
|
17845
17889
|
shape: "polygon";
|
|
@@ -17849,6 +17893,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17849
17893
|
}[];
|
|
17850
17894
|
subcircuit_id?: string | undefined;
|
|
17851
17895
|
pcb_group_id?: string | undefined;
|
|
17896
|
+
pcb_board_id?: string | undefined;
|
|
17897
|
+
pcb_panel_id?: string | undefined;
|
|
17852
17898
|
pcb_cutout_id?: string | undefined;
|
|
17853
17899
|
}>]>, z.ZodObject<{
|
|
17854
17900
|
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
@@ -19472,7 +19518,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19472
19518
|
}>;
|
|
19473
19519
|
schematic_trace_id: z.ZodString;
|
|
19474
19520
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19475
|
-
name: z.ZodOptional<z.ZodString>;
|
|
19476
19521
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19477
19522
|
}, "strip", z.ZodTypeAny, {
|
|
19478
19523
|
type: "schematic_voltage_probe";
|
|
@@ -19482,7 +19527,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19482
19527
|
y: number;
|
|
19483
19528
|
};
|
|
19484
19529
|
schematic_voltage_probe_id: string;
|
|
19485
|
-
name?: string | undefined;
|
|
19486
19530
|
source_component_id?: string | undefined;
|
|
19487
19531
|
subcircuit_id?: string | undefined;
|
|
19488
19532
|
voltage?: number | undefined;
|
|
@@ -19494,7 +19538,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19494
19538
|
y: string | number;
|
|
19495
19539
|
};
|
|
19496
19540
|
schematic_voltage_probe_id: string;
|
|
19497
|
-
name?: string | undefined;
|
|
19498
19541
|
source_component_id?: string | undefined;
|
|
19499
19542
|
subcircuit_id?: string | undefined;
|
|
19500
19543
|
voltage?: string | number | undefined;
|
|
@@ -19934,8 +19977,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19934
19977
|
simulation_experiment_id: z.ZodString;
|
|
19935
19978
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
19936
19979
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
19937
|
-
|
|
19938
|
-
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
19980
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19939
19981
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
19940
19982
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19941
19983
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19950,10 +19992,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19950
19992
|
simulation_transient_voltage_graph_id: string;
|
|
19951
19993
|
voltage_levels: number[];
|
|
19952
19994
|
name?: string | undefined;
|
|
19995
|
+
source_component_id?: string | undefined;
|
|
19953
19996
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
19954
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
19955
19997
|
timestamps_ms?: number[] | undefined;
|
|
19956
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
19957
19998
|
}, {
|
|
19958
19999
|
type: "simulation_transient_voltage_graph";
|
|
19959
20000
|
simulation_experiment_id: string;
|
|
@@ -19962,11 +20003,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19962
20003
|
end_time_ms: string | number;
|
|
19963
20004
|
voltage_levels: number[];
|
|
19964
20005
|
name?: string | undefined;
|
|
20006
|
+
source_component_id?: string | undefined;
|
|
19965
20007
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
19966
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
19967
20008
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
19968
20009
|
timestamps_ms?: number[] | undefined;
|
|
19969
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
19970
20010
|
}>, z.ZodObject<{
|
|
19971
20011
|
type: z.ZodLiteral<"simulation_switch">;
|
|
19972
20012
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -19997,19 +20037,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19997
20037
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19998
20038
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
19999
20039
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
20000
|
-
name: z.ZodOptional<z.ZodString>;
|
|
20001
20040
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20002
20041
|
}, "strip", z.ZodTypeAny, {
|
|
20003
20042
|
type: "simulation_voltage_probe";
|
|
20004
20043
|
simulation_voltage_probe_id: string;
|
|
20005
|
-
name?: string | undefined;
|
|
20006
20044
|
source_component_id?: string | undefined;
|
|
20007
20045
|
subcircuit_id?: string | undefined;
|
|
20008
20046
|
source_port_id?: string | undefined;
|
|
20009
20047
|
source_net_id?: string | undefined;
|
|
20010
20048
|
}, {
|
|
20011
20049
|
type: "simulation_voltage_probe";
|
|
20012
|
-
name?: string | undefined;
|
|
20013
20050
|
source_component_id?: string | undefined;
|
|
20014
20051
|
subcircuit_id?: string | undefined;
|
|
20015
20052
|
source_port_id?: string | undefined;
|
|
@@ -20018,14 +20055,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20018
20055
|
}>, {
|
|
20019
20056
|
type: "simulation_voltage_probe";
|
|
20020
20057
|
simulation_voltage_probe_id: string;
|
|
20021
|
-
name?: string | undefined;
|
|
20022
20058
|
source_component_id?: string | undefined;
|
|
20023
20059
|
subcircuit_id?: string | undefined;
|
|
20024
20060
|
source_port_id?: string | undefined;
|
|
20025
20061
|
source_net_id?: string | undefined;
|
|
20026
20062
|
}, {
|
|
20027
20063
|
type: "simulation_voltage_probe";
|
|
20028
|
-
name?: string | undefined;
|
|
20029
20064
|
source_component_id?: string | undefined;
|
|
20030
20065
|
subcircuit_id?: string | undefined;
|
|
20031
20066
|
source_port_id?: string | undefined;
|
|
@@ -25468,6 +25503,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25468
25503
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25469
25504
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25470
25505
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25506
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
25507
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
25471
25508
|
} & {
|
|
25472
25509
|
shape: z.ZodLiteral<"rect">;
|
|
25473
25510
|
center: z.ZodObject<{
|
|
@@ -25496,6 +25533,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25496
25533
|
rotation?: number | undefined;
|
|
25497
25534
|
subcircuit_id?: string | undefined;
|
|
25498
25535
|
pcb_group_id?: string | undefined;
|
|
25536
|
+
pcb_board_id?: string | undefined;
|
|
25537
|
+
pcb_panel_id?: string | undefined;
|
|
25499
25538
|
}, {
|
|
25500
25539
|
type: "pcb_cutout";
|
|
25501
25540
|
width: string | number;
|
|
@@ -25508,12 +25547,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25508
25547
|
rotation?: string | number | undefined;
|
|
25509
25548
|
subcircuit_id?: string | undefined;
|
|
25510
25549
|
pcb_group_id?: string | undefined;
|
|
25550
|
+
pcb_board_id?: string | undefined;
|
|
25551
|
+
pcb_panel_id?: string | undefined;
|
|
25511
25552
|
pcb_cutout_id?: string | undefined;
|
|
25512
25553
|
}>, z.ZodObject<{
|
|
25513
25554
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
25514
25555
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25515
25556
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25516
25557
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25558
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
25559
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
25517
25560
|
} & {
|
|
25518
25561
|
shape: z.ZodLiteral<"circle">;
|
|
25519
25562
|
center: z.ZodObject<{
|
|
@@ -25538,6 +25581,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25538
25581
|
pcb_cutout_id: string;
|
|
25539
25582
|
subcircuit_id?: string | undefined;
|
|
25540
25583
|
pcb_group_id?: string | undefined;
|
|
25584
|
+
pcb_board_id?: string | undefined;
|
|
25585
|
+
pcb_panel_id?: string | undefined;
|
|
25541
25586
|
}, {
|
|
25542
25587
|
type: "pcb_cutout";
|
|
25543
25588
|
center: {
|
|
@@ -25548,12 +25593,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25548
25593
|
radius: string | number;
|
|
25549
25594
|
subcircuit_id?: string | undefined;
|
|
25550
25595
|
pcb_group_id?: string | undefined;
|
|
25596
|
+
pcb_board_id?: string | undefined;
|
|
25597
|
+
pcb_panel_id?: string | undefined;
|
|
25551
25598
|
pcb_cutout_id?: string | undefined;
|
|
25552
25599
|
}>, z.ZodObject<{
|
|
25553
25600
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
25554
25601
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25555
25602
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25556
25603
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25604
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
25605
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
25557
25606
|
} & {
|
|
25558
25607
|
shape: z.ZodLiteral<"polygon">;
|
|
25559
25608
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -25576,6 +25625,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25576
25625
|
pcb_cutout_id: string;
|
|
25577
25626
|
subcircuit_id?: string | undefined;
|
|
25578
25627
|
pcb_group_id?: string | undefined;
|
|
25628
|
+
pcb_board_id?: string | undefined;
|
|
25629
|
+
pcb_panel_id?: string | undefined;
|
|
25579
25630
|
}, {
|
|
25580
25631
|
type: "pcb_cutout";
|
|
25581
25632
|
shape: "polygon";
|
|
@@ -25585,6 +25636,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25585
25636
|
}[];
|
|
25586
25637
|
subcircuit_id?: string | undefined;
|
|
25587
25638
|
pcb_group_id?: string | undefined;
|
|
25639
|
+
pcb_board_id?: string | undefined;
|
|
25640
|
+
pcb_panel_id?: string | undefined;
|
|
25588
25641
|
pcb_cutout_id?: string | undefined;
|
|
25589
25642
|
}>]>, z.ZodObject<{
|
|
25590
25643
|
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
@@ -27208,7 +27261,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27208
27261
|
}>;
|
|
27209
27262
|
schematic_trace_id: z.ZodString;
|
|
27210
27263
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27211
|
-
name: z.ZodOptional<z.ZodString>;
|
|
27212
27264
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27213
27265
|
}, "strip", z.ZodTypeAny, {
|
|
27214
27266
|
type: "schematic_voltage_probe";
|
|
@@ -27218,7 +27270,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27218
27270
|
y: number;
|
|
27219
27271
|
};
|
|
27220
27272
|
schematic_voltage_probe_id: string;
|
|
27221
|
-
name?: string | undefined;
|
|
27222
27273
|
source_component_id?: string | undefined;
|
|
27223
27274
|
subcircuit_id?: string | undefined;
|
|
27224
27275
|
voltage?: number | undefined;
|
|
@@ -27230,7 +27281,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27230
27281
|
y: string | number;
|
|
27231
27282
|
};
|
|
27232
27283
|
schematic_voltage_probe_id: string;
|
|
27233
|
-
name?: string | undefined;
|
|
27234
27284
|
source_component_id?: string | undefined;
|
|
27235
27285
|
subcircuit_id?: string | undefined;
|
|
27236
27286
|
voltage?: string | number | undefined;
|
|
@@ -27670,8 +27720,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27670
27720
|
simulation_experiment_id: z.ZodString;
|
|
27671
27721
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
27672
27722
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
27673
|
-
|
|
27674
|
-
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
27723
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27675
27724
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
27676
27725
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27677
27726
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27686,10 +27735,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27686
27735
|
simulation_transient_voltage_graph_id: string;
|
|
27687
27736
|
voltage_levels: number[];
|
|
27688
27737
|
name?: string | undefined;
|
|
27738
|
+
source_component_id?: string | undefined;
|
|
27689
27739
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
27690
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
27691
27740
|
timestamps_ms?: number[] | undefined;
|
|
27692
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
27693
27741
|
}, {
|
|
27694
27742
|
type: "simulation_transient_voltage_graph";
|
|
27695
27743
|
simulation_experiment_id: string;
|
|
@@ -27698,11 +27746,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27698
27746
|
end_time_ms: string | number;
|
|
27699
27747
|
voltage_levels: number[];
|
|
27700
27748
|
name?: string | undefined;
|
|
27749
|
+
source_component_id?: string | undefined;
|
|
27701
27750
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
27702
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
27703
27751
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
27704
27752
|
timestamps_ms?: number[] | undefined;
|
|
27705
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
27706
27753
|
}>, z.ZodObject<{
|
|
27707
27754
|
type: z.ZodLiteral<"simulation_switch">;
|
|
27708
27755
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -27733,19 +27780,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27733
27780
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27734
27781
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
27735
27782
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
27736
|
-
name: z.ZodOptional<z.ZodString>;
|
|
27737
27783
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27738
27784
|
}, "strip", z.ZodTypeAny, {
|
|
27739
27785
|
type: "simulation_voltage_probe";
|
|
27740
27786
|
simulation_voltage_probe_id: string;
|
|
27741
|
-
name?: string | undefined;
|
|
27742
27787
|
source_component_id?: string | undefined;
|
|
27743
27788
|
subcircuit_id?: string | undefined;
|
|
27744
27789
|
source_port_id?: string | undefined;
|
|
27745
27790
|
source_net_id?: string | undefined;
|
|
27746
27791
|
}, {
|
|
27747
27792
|
type: "simulation_voltage_probe";
|
|
27748
|
-
name?: string | undefined;
|
|
27749
27793
|
source_component_id?: string | undefined;
|
|
27750
27794
|
subcircuit_id?: string | undefined;
|
|
27751
27795
|
source_port_id?: string | undefined;
|
|
@@ -27754,14 +27798,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27754
27798
|
}>, {
|
|
27755
27799
|
type: "simulation_voltage_probe";
|
|
27756
27800
|
simulation_voltage_probe_id: string;
|
|
27757
|
-
name?: string | undefined;
|
|
27758
27801
|
source_component_id?: string | undefined;
|
|
27759
27802
|
subcircuit_id?: string | undefined;
|
|
27760
27803
|
source_port_id?: string | undefined;
|
|
27761
27804
|
source_net_id?: string | undefined;
|
|
27762
27805
|
}, {
|
|
27763
27806
|
type: "simulation_voltage_probe";
|
|
27764
|
-
name?: string | undefined;
|
|
27765
27807
|
source_component_id?: string | undefined;
|
|
27766
27808
|
subcircuit_id?: string | undefined;
|
|
27767
27809
|
source_port_id?: string | undefined;
|