@texturehq/edges 5.5.1 → 5.7.0

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.
@@ -3091,7 +3091,7 @@ declare const ENTITY_CATEGORY_CONFIG: {
3091
3091
  };
3092
3092
  /** The coarse element-type axis (mirrors `@texturehq/grid-element-config`'s
3093
3093
  * `GridElementType`; kept in sync by transcription). */
3094
- type GridElementSourceType = "CAPACITOR" | "CONSUMER" | "GENERATOR" | "MOTOR" | "NODE" | "OVERCURRENT_DEVICE" | "OVERHEAD_LINE" | "REGULATOR" | "SOURCE" | "SWITCH" | "TRANSFORMER" | "UNDERGROUND_LINE";
3094
+ type GridElementSourceType = "CAPACITOR" | "CONSUMER" | "GENERATOR" | "MOTOR" | "NODE" | "OVERCURRENT_DEVICE" | "OVERHEAD_LINE" | "REGULATOR" | "SOURCE" | "SUPPORT_STRUCTURE" | "SWITCH" | "TRANSFORMER" | "UNDERGROUND_LINE";
3095
3095
  /**
3096
3096
  * JSONB keys that are ABSENT or PII-zeroed in prod (MR-07 coverage table). No
3097
3097
  * grid stat-list row (or headline metric) may reference one of these — enforced
@@ -3111,18 +3111,23 @@ declare const ABSENT_GRID_FIELDS: readonly ["energized", "customerName", "gs_max
3111
3111
  * 7.2 kV transformer. Listing a row here is a deliberate, reviewable admission
3112
3112
  * that its unit is unverified, not an oversight.
3113
3113
  *
3114
- * Status per row (as of 2026-08-17):
3115
- * • CAPACITOR / NODE `nominalVoltage` -- NOT measured; DQ-3 covered transformers
3116
- * only. Deliberately NOT fixed blind: added to the next DB round (DQ-10). If
3117
- * they show the transformer pattern, one decision fixes both.
3118
- * REGULATOR `outputVoltagePh{A,B,C}` -- lower risk: the SCADA audit observed
3119
- * regulator volts in the 7,261...20,538 V range, but that is TELEMETRY, not
3120
- * this metadata key.
3121
- * GENERATOR `outputVoltage` / MOTOR `voltage` -- small populations.
3114
+ * Status per row (as of 2026-08-24 -- the escape hatch worked, and emptied itself):
3115
+ * • CAPACITOR `nominalVoltage` -- MEASURED (DQ-5). 87/114 populated, all in volts, but 23 are `0`
3116
+ * placeholders that rendered "0 V". Re-sourced from the normalized `nominalVoltageV` extra.
3117
+ * NODE `nominalVoltage` -- MEASURED (DQ-5): 0% across all four spellings on all 492 Nodes. Row
3118
+ * deleted in MR-P01-5a, together with the SUPPORT_STRUCTURE split that stopped 58,158 poles from
3119
+ * sharing this (now empty) list.
3120
+ * REGULATOR `outputVoltagePh{A,B,C}` -- MEASURED (2026-08-24) and WRONG, not merely unverified:
3121
+ * the values are a per-unit multiplier (~1.025), so all three rendered "1 V". DQ-7 then found
3122
+ * they duplicate `forward_set_voltage` (123.5 V on a 120 V base). Rows deleted.
3123
+ * • GENERATOR `outputVoltage` -- MEASURED: 0% on all 2,905. Row deleted (and DQ-8 showed the type
3124
+ * is service points, not generation, so there was never a voltage to find).
3125
+ * • MOTOR `voltage` -- still unmeasured, and unmeasurable: element type 11 has ZERO rows in prod.
3126
+ * The only surviving entry, kept because the row still exists (deleting dead registry keys is P02).
3122
3127
  *
3123
3128
  * Entries are `${GridElementSourceType}.${key}`.
3124
3129
  */
3125
- declare const UNVERIFIED_VOLTAGE_UNIT_ROWS: readonly ["CAPACITOR.nominalVoltage", "NODE.nominalVoltage", "REGULATOR.outputVoltagePhA", "REGULATOR.outputVoltagePhB", "REGULATOR.outputVoltagePhC", "GENERATOR.outputVoltage", "MOTOR.voltage"];
3130
+ declare const UNVERIFIED_VOLTAGE_UNIT_ROWS: readonly ["MOTOR.voltage"];
3126
3131
  /**
3127
3132
  * Static property rows per `GridElementType`, transcribed from
3128
3133
  * `grid-element-config/src/configs/*.config.ts` `metadataFields`. Serializable:
@@ -3137,6 +3142,12 @@ declare const GRID_STAT_LIST: {
3137
3142
  readonly unit: "kVA";
3138
3143
  readonly decimals: 0;
3139
3144
  };
3145
+ }, {
3146
+ readonly key: "phase";
3147
+ readonly label: "Phase";
3148
+ readonly format: {
3149
+ readonly type: "text";
3150
+ };
3140
3151
  }, {
3141
3152
  readonly key: "primaryVoltageKv";
3142
3153
  readonly label: "Primary Voltage";
@@ -3153,13 +3164,49 @@ declare const GRID_STAT_LIST: {
3153
3164
  readonly unit: "kV";
3154
3165
  readonly decimals: 2;
3155
3166
  };
3167
+ }, {
3168
+ readonly key: "manufacturer";
3169
+ readonly label: "Manufacturer";
3170
+ readonly format: {
3171
+ readonly type: "text";
3172
+ };
3173
+ }, {
3174
+ readonly key: "xfmr_conductor_description";
3175
+ readonly label: "Conductor";
3176
+ readonly format: {
3177
+ readonly type: "text";
3178
+ };
3156
3179
  }];
3157
3180
  readonly CONSUMER: [{
3181
+ readonly key: "service_address";
3182
+ readonly label: "Service address";
3183
+ readonly format: {
3184
+ readonly type: "text";
3185
+ };
3186
+ }, {
3187
+ readonly key: "name";
3188
+ readonly label: "Customer";
3189
+ readonly format: {
3190
+ readonly type: "text";
3191
+ };
3192
+ }, {
3193
+ readonly key: "account_number";
3194
+ readonly label: "Account #";
3195
+ readonly format: {
3196
+ readonly type: "text";
3197
+ };
3198
+ }, {
3158
3199
  readonly key: "meterNumber";
3159
3200
  readonly label: "Meter Number";
3160
3201
  readonly format: {
3161
3202
  readonly type: "text";
3162
3203
  };
3204
+ }, {
3205
+ readonly key: "service_type";
3206
+ readonly label: "Service type";
3207
+ readonly format: {
3208
+ readonly type: "text";
3209
+ };
3163
3210
  }];
3164
3211
  readonly SOURCE: [{
3165
3212
  readonly key: "voltageKv";
@@ -3175,6 +3222,18 @@ declare const GRID_STAT_LIST: {
3175
3222
  readonly format: {
3176
3223
  readonly type: "text";
3177
3224
  };
3225
+ }, {
3226
+ readonly key: "trf_capacity";
3227
+ readonly label: "Rated Capacity";
3228
+ readonly format: {
3229
+ readonly type: "text";
3230
+ };
3231
+ }, {
3232
+ readonly key: "connection_code";
3233
+ readonly label: "Connection";
3234
+ readonly format: {
3235
+ readonly type: "text";
3236
+ };
3178
3237
  }];
3179
3238
  readonly SWITCH: [{
3180
3239
  readonly key: "switchId";
@@ -3183,30 +3242,38 @@ declare const GRID_STAT_LIST: {
3183
3242
  readonly type: "text";
3184
3243
  };
3185
3244
  }, {
3186
- readonly key: "ratedCurrent";
3187
- readonly label: "Rated Current";
3245
+ readonly key: "phase";
3246
+ readonly label: "Phase";
3188
3247
  readonly format: {
3189
- readonly type: "number";
3190
- readonly unit: "A";
3191
- readonly decimals: 0;
3248
+ readonly type: "text";
3192
3249
  };
3193
3250
  }, {
3194
- readonly key: "normalState";
3195
- readonly label: "Normal State";
3251
+ readonly key: "switchIsOpen";
3252
+ readonly label: "Position";
3253
+ readonly format: {
3254
+ readonly type: "text";
3255
+ };
3256
+ }, {
3257
+ readonly key: "switch_status";
3258
+ readonly label: "Status";
3259
+ readonly format: {
3260
+ readonly type: "text";
3261
+ };
3262
+ }, {
3263
+ readonly key: "partnerIdentifier";
3264
+ readonly label: "Partner ID";
3196
3265
  readonly format: {
3197
3266
  readonly type: "text";
3198
3267
  };
3199
3268
  }];
3200
3269
  readonly CAPACITOR: [{
3201
- readonly key: "unitSizeKvar";
3202
- readonly label: "Capacity";
3270
+ readonly key: "phase";
3271
+ readonly label: "Phase";
3203
3272
  readonly format: {
3204
- readonly type: "power";
3205
- readonly unit: "kVar";
3206
- readonly decimals: 1;
3273
+ readonly type: "text";
3207
3274
  };
3208
3275
  }, {
3209
- readonly key: "nominalVoltage";
3276
+ readonly key: "nominalVoltageV";
3210
3277
  readonly label: "Nominal Voltage";
3211
3278
  readonly format: {
3212
3279
  readonly type: "voltage";
@@ -3215,50 +3282,50 @@ declare const GRID_STAT_LIST: {
3215
3282
  };
3216
3283
  }];
3217
3284
  readonly OVERCURRENT_DEVICE: [{
3218
- readonly key: "ratedCurrent";
3219
- readonly label: "Rated Current";
3285
+ readonly key: "size_value";
3286
+ readonly label: "Size";
3220
3287
  readonly format: {
3221
- readonly type: "number";
3222
- readonly unit: "A";
3223
- readonly decimals: 0;
3288
+ readonly type: "text";
3224
3289
  };
3225
3290
  }, {
3226
- readonly key: "deviceType";
3227
- readonly label: "Device Type";
3291
+ readonly key: "phase";
3292
+ readonly label: "Phase";
3228
3293
  readonly format: {
3229
3294
  readonly type: "text";
3230
3295
  };
3231
3296
  }];
3232
3297
  readonly REGULATOR: [{
3233
- readonly key: "outputVoltagePhA";
3234
- readonly label: "Output Voltage Phase A";
3298
+ readonly key: "rated_kva";
3299
+ readonly label: "Rated kVA";
3235
3300
  readonly format: {
3236
- readonly type: "voltage";
3237
- readonly unit: "V";
3301
+ readonly type: "power";
3302
+ readonly unit: "kVA";
3238
3303
  readonly decimals: 0;
3239
3304
  };
3240
3305
  }, {
3241
- readonly key: "outputVoltagePhB";
3242
- readonly label: "Output Voltage Phase B";
3306
+ readonly key: "phase";
3307
+ readonly label: "Phase";
3243
3308
  readonly format: {
3244
- readonly type: "voltage";
3245
- readonly unit: "V";
3246
- readonly decimals: 0;
3309
+ readonly type: "text";
3247
3310
  };
3248
3311
  }, {
3249
- readonly key: "outputVoltagePhC";
3250
- readonly label: "Output Voltage Phase C";
3312
+ readonly key: "manufacturer";
3313
+ readonly label: "Manufacturer";
3251
3314
  readonly format: {
3252
- readonly type: "voltage";
3253
- readonly unit: "V";
3254
- readonly decimals: 0;
3315
+ readonly type: "text";
3255
3316
  };
3256
3317
  }, {
3257
- readonly key: "ratedPower";
3258
- readonly label: "Rated Power";
3318
+ readonly key: "high_side_configuration";
3319
+ readonly label: "High Side";
3259
3320
  readonly format: {
3260
- readonly type: "power";
3261
- readonly unit: "kVA";
3321
+ readonly type: "text";
3322
+ };
3323
+ }, {
3324
+ readonly key: "forwardSetVoltageV";
3325
+ readonly label: "Forward Set Voltage";
3326
+ readonly format: {
3327
+ readonly type: "voltage";
3328
+ readonly unit: "V";
3262
3329
  readonly decimals: 1;
3263
3330
  };
3264
3331
  }];
@@ -3288,6 +3355,24 @@ declare const GRID_STAT_LIST: {
3288
3355
  readonly format: {
3289
3356
  readonly type: "text";
3290
3357
  };
3358
+ }, {
3359
+ readonly key: "conductorDescNeutral";
3360
+ readonly label: "Conductor Neutral";
3361
+ readonly format: {
3362
+ readonly type: "text";
3363
+ };
3364
+ }, {
3365
+ readonly key: "phase";
3366
+ readonly label: "Phase";
3367
+ readonly format: {
3368
+ readonly type: "text";
3369
+ };
3370
+ }, {
3371
+ readonly key: "subtype_cd";
3372
+ readonly label: "Subtype";
3373
+ readonly format: {
3374
+ readonly type: "text";
3375
+ };
3291
3376
  }];
3292
3377
  readonly UNDERGROUND_LINE: [{
3293
3378
  readonly key: "impedanceLength";
@@ -3315,31 +3400,58 @@ declare const GRID_STAT_LIST: {
3315
3400
  readonly format: {
3316
3401
  readonly type: "text";
3317
3402
  };
3403
+ }, {
3404
+ readonly key: "phase";
3405
+ readonly label: "Phase";
3406
+ readonly format: {
3407
+ readonly type: "text";
3408
+ };
3409
+ }, {
3410
+ readonly key: "subtype_cd";
3411
+ readonly label: "Subtype";
3412
+ readonly format: {
3413
+ readonly type: "text";
3414
+ };
3318
3415
  }];
3319
- readonly NODE: [{
3320
- readonly key: "nominalVoltage";
3321
- readonly label: "Nominal Voltage";
3416
+ readonly NODE: [];
3417
+ readonly SUPPORT_STRUCTURE: [{
3418
+ readonly key: "height";
3419
+ readonly label: "Height";
3322
3420
  readonly format: {
3323
- readonly type: "voltage";
3324
- readonly unit: "V";
3421
+ readonly type: "distance";
3422
+ readonly unit: "ft";
3325
3423
  readonly decimals: 0;
3326
3424
  };
3327
- }];
3328
- readonly GENERATOR: [{
3329
- readonly key: "ratedPower";
3330
- readonly label: "Rated Power";
3425
+ }, {
3426
+ readonly key: "class";
3427
+ readonly label: "Class";
3331
3428
  readonly format: {
3332
- readonly type: "power";
3333
- readonly unit: "kW";
3334
- readonly decimals: 1;
3429
+ readonly type: "text";
3335
3430
  };
3336
3431
  }, {
3337
- readonly key: "outputVoltage";
3338
- readonly label: "Output Voltage";
3432
+ readonly key: "species";
3433
+ readonly label: "Material";
3339
3434
  readonly format: {
3340
- readonly type: "voltage";
3341
- readonly unit: "V";
3342
- readonly decimals: 0;
3435
+ readonly type: "text";
3436
+ };
3437
+ }, {
3438
+ readonly key: "phase";
3439
+ readonly label: "Phase";
3440
+ readonly format: {
3441
+ readonly type: "text";
3442
+ };
3443
+ }, {
3444
+ readonly key: "substation";
3445
+ readonly label: "Substation";
3446
+ readonly format: {
3447
+ readonly type: "text";
3448
+ };
3449
+ }];
3450
+ readonly GENERATOR: [{
3451
+ readonly key: "phase";
3452
+ readonly label: "Phase";
3453
+ readonly format: {
3454
+ readonly type: "text";
3343
3455
  };
3344
3456
  }];
3345
3457
  readonly MOTOR: [{
@@ -3535,6 +3647,18 @@ declare const ENTITY_CONFIG: {
3535
3647
  readonly format: {
3536
3648
  readonly type: "text";
3537
3649
  };
3650
+ }, {
3651
+ readonly key: "trf_capacity";
3652
+ readonly label: "Rated Capacity";
3653
+ readonly format: {
3654
+ readonly type: "text";
3655
+ };
3656
+ }, {
3657
+ readonly key: "connection_code";
3658
+ readonly label: "Connection";
3659
+ readonly format: {
3660
+ readonly type: "text";
3661
+ };
3538
3662
  }];
3539
3663
  };
3540
3664
  readonly label: {
@@ -3563,6 +3687,18 @@ declare const ENTITY_CONFIG: {
3563
3687
  readonly format: {
3564
3688
  readonly type: "text";
3565
3689
  };
3690
+ }, {
3691
+ readonly key: "trf_capacity";
3692
+ readonly label: "Rated Capacity";
3693
+ readonly format: {
3694
+ readonly type: "text";
3695
+ };
3696
+ }, {
3697
+ readonly key: "connection_code";
3698
+ readonly label: "Connection";
3699
+ readonly format: {
3700
+ readonly type: "text";
3701
+ };
3566
3702
  }];
3567
3703
  };
3568
3704
  readonly label: {
@@ -3578,15 +3714,13 @@ declare const ENTITY_CONFIG: {
3578
3714
  readonly detailPage: true;
3579
3715
  readonly properties: {
3580
3716
  readonly statList: [{
3581
- readonly key: "unitSizeKvar";
3582
- readonly label: "Capacity";
3717
+ readonly key: "phase";
3718
+ readonly label: "Phase";
3583
3719
  readonly format: {
3584
- readonly type: "power";
3585
- readonly unit: "kVar";
3586
- readonly decimals: 1;
3720
+ readonly type: "text";
3587
3721
  };
3588
3722
  }, {
3589
- readonly key: "nominalVoltage";
3723
+ readonly key: "nominalVoltageV";
3590
3724
  readonly label: "Nominal Voltage";
3591
3725
  readonly format: {
3592
3726
  readonly type: "voltage";
@@ -3614,16 +3748,26 @@ declare const ENTITY_CONFIG: {
3614
3748
  readonly type: "text";
3615
3749
  };
3616
3750
  }, {
3617
- readonly key: "ratedCurrent";
3618
- readonly label: "Rated Current";
3751
+ readonly key: "phase";
3752
+ readonly label: "Phase";
3619
3753
  readonly format: {
3620
- readonly type: "number";
3621
- readonly unit: "A";
3622
- readonly decimals: 0;
3754
+ readonly type: "text";
3755
+ };
3756
+ }, {
3757
+ readonly key: "switchIsOpen";
3758
+ readonly label: "Position";
3759
+ readonly format: {
3760
+ readonly type: "text";
3761
+ };
3762
+ }, {
3763
+ readonly key: "switch_status";
3764
+ readonly label: "Status";
3765
+ readonly format: {
3766
+ readonly type: "text";
3623
3767
  };
3624
3768
  }, {
3625
- readonly key: "normalState";
3626
- readonly label: "Normal State";
3769
+ readonly key: "partnerIdentifier";
3770
+ readonly label: "Partner ID";
3627
3771
  readonly format: {
3628
3772
  readonly type: "text";
3629
3773
  };
@@ -3658,16 +3802,26 @@ declare const ENTITY_CONFIG: {
3658
3802
  readonly type: "text";
3659
3803
  };
3660
3804
  }, {
3661
- readonly key: "ratedCurrent";
3662
- readonly label: "Rated Current";
3805
+ readonly key: "phase";
3806
+ readonly label: "Phase";
3663
3807
  readonly format: {
3664
- readonly type: "number";
3665
- readonly unit: "A";
3666
- readonly decimals: 0;
3808
+ readonly type: "text";
3667
3809
  };
3668
3810
  }, {
3669
- readonly key: "normalState";
3670
- readonly label: "Normal State";
3811
+ readonly key: "switchIsOpen";
3812
+ readonly label: "Position";
3813
+ readonly format: {
3814
+ readonly type: "text";
3815
+ };
3816
+ }, {
3817
+ readonly key: "switch_status";
3818
+ readonly label: "Status";
3819
+ readonly format: {
3820
+ readonly type: "text";
3821
+ };
3822
+ }, {
3823
+ readonly key: "partnerIdentifier";
3824
+ readonly label: "Partner ID";
3671
3825
  readonly format: {
3672
3826
  readonly type: "text";
3673
3827
  };
@@ -3695,15 +3849,7 @@ declare const ENTITY_CONFIG: {
3695
3849
  readonly archetype: "grid-energized";
3696
3850
  readonly detailPage: true;
3697
3851
  readonly properties: {
3698
- readonly statList: [{
3699
- readonly key: "nominalVoltage";
3700
- readonly label: "Nominal Voltage";
3701
- readonly format: {
3702
- readonly type: "voltage";
3703
- readonly unit: "V";
3704
- readonly decimals: 0;
3705
- };
3706
- }];
3852
+ readonly statList: [];
3707
3853
  };
3708
3854
  readonly label: {
3709
3855
  readonly singular: "Relay";
@@ -3725,6 +3871,12 @@ declare const ENTITY_CONFIG: {
3725
3871
  readonly unit: "kVA";
3726
3872
  readonly decimals: 0;
3727
3873
  };
3874
+ }, {
3875
+ readonly key: "phase";
3876
+ readonly label: "Phase";
3877
+ readonly format: {
3878
+ readonly type: "text";
3879
+ };
3728
3880
  }, {
3729
3881
  readonly key: "primaryVoltageKv";
3730
3882
  readonly label: "Primary Voltage";
@@ -3741,6 +3893,18 @@ declare const ENTITY_CONFIG: {
3741
3893
  readonly unit: "kV";
3742
3894
  readonly decimals: 2;
3743
3895
  };
3896
+ }, {
3897
+ readonly key: "manufacturer";
3898
+ readonly label: "Manufacturer";
3899
+ readonly format: {
3900
+ readonly type: "text";
3901
+ };
3902
+ }, {
3903
+ readonly key: "xfmr_conductor_description";
3904
+ readonly label: "Conductor";
3905
+ readonly format: {
3906
+ readonly type: "text";
3907
+ };
3744
3908
  }];
3745
3909
  };
3746
3910
  readonly label: {
@@ -3756,11 +3920,35 @@ declare const ENTITY_CONFIG: {
3756
3920
  readonly detailPage: true;
3757
3921
  readonly properties: {
3758
3922
  readonly statList: [{
3923
+ readonly key: "service_address";
3924
+ readonly label: "Service address";
3925
+ readonly format: {
3926
+ readonly type: "text";
3927
+ };
3928
+ }, {
3929
+ readonly key: "name";
3930
+ readonly label: "Customer";
3931
+ readonly format: {
3932
+ readonly type: "text";
3933
+ };
3934
+ }, {
3935
+ readonly key: "account_number";
3936
+ readonly label: "Account #";
3937
+ readonly format: {
3938
+ readonly type: "text";
3939
+ };
3940
+ }, {
3759
3941
  readonly key: "meterNumber";
3760
3942
  readonly label: "Meter Number";
3761
3943
  readonly format: {
3762
3944
  readonly type: "text";
3763
3945
  };
3946
+ }, {
3947
+ readonly key: "service_type";
3948
+ readonly label: "Service type";
3949
+ readonly format: {
3950
+ readonly type: "text";
3951
+ };
3764
3952
  }];
3765
3953
  };
3766
3954
  readonly label: {
@@ -3776,11 +3964,35 @@ declare const ENTITY_CONFIG: {
3776
3964
  readonly detailPage: true;
3777
3965
  readonly properties: {
3778
3966
  readonly statList: [{
3967
+ readonly key: "service_address";
3968
+ readonly label: "Service address";
3969
+ readonly format: {
3970
+ readonly type: "text";
3971
+ };
3972
+ }, {
3973
+ readonly key: "name";
3974
+ readonly label: "Customer";
3975
+ readonly format: {
3976
+ readonly type: "text";
3977
+ };
3978
+ }, {
3979
+ readonly key: "account_number";
3980
+ readonly label: "Account #";
3981
+ readonly format: {
3982
+ readonly type: "text";
3983
+ };
3984
+ }, {
3779
3985
  readonly key: "meterNumber";
3780
3986
  readonly label: "Meter Number";
3781
3987
  readonly format: {
3782
3988
  readonly type: "text";
3783
3989
  };
3990
+ }, {
3991
+ readonly key: "service_type";
3992
+ readonly label: "Service type";
3993
+ readonly format: {
3994
+ readonly type: "text";
3995
+ };
3784
3996
  }];
3785
3997
  };
3786
3998
  readonly label: {
@@ -3821,6 +4033,24 @@ declare const ENTITY_CONFIG: {
3821
4033
  readonly format: {
3822
4034
  readonly type: "text";
3823
4035
  };
4036
+ }, {
4037
+ readonly key: "conductorDescNeutral";
4038
+ readonly label: "Conductor Neutral";
4039
+ readonly format: {
4040
+ readonly type: "text";
4041
+ };
4042
+ }, {
4043
+ readonly key: "phase";
4044
+ readonly label: "Phase";
4045
+ readonly format: {
4046
+ readonly type: "text";
4047
+ };
4048
+ }, {
4049
+ readonly key: "subtype_cd";
4050
+ readonly label: "Subtype";
4051
+ readonly format: {
4052
+ readonly type: "text";
4053
+ };
3824
4054
  }];
3825
4055
  };
3826
4056
  readonly label: {
@@ -3861,6 +4091,24 @@ declare const ENTITY_CONFIG: {
3861
4091
  readonly format: {
3862
4092
  readonly type: "text";
3863
4093
  };
4094
+ }, {
4095
+ readonly key: "conductorDescNeutral";
4096
+ readonly label: "Conductor Neutral";
4097
+ readonly format: {
4098
+ readonly type: "text";
4099
+ };
4100
+ }, {
4101
+ readonly key: "phase";
4102
+ readonly label: "Phase";
4103
+ readonly format: {
4104
+ readonly type: "text";
4105
+ };
4106
+ }, {
4107
+ readonly key: "subtype_cd";
4108
+ readonly label: "Subtype";
4109
+ readonly format: {
4110
+ readonly type: "text";
4111
+ };
3864
4112
  }];
3865
4113
  };
3866
4114
  readonly label: {
@@ -3901,6 +4149,24 @@ declare const ENTITY_CONFIG: {
3901
4149
  readonly format: {
3902
4150
  readonly type: "text";
3903
4151
  };
4152
+ }, {
4153
+ readonly key: "conductorDescNeutral";
4154
+ readonly label: "Conductor Neutral";
4155
+ readonly format: {
4156
+ readonly type: "text";
4157
+ };
4158
+ }, {
4159
+ readonly key: "phase";
4160
+ readonly label: "Phase";
4161
+ readonly format: {
4162
+ readonly type: "text";
4163
+ };
4164
+ }, {
4165
+ readonly key: "subtype_cd";
4166
+ readonly label: "Subtype";
4167
+ readonly format: {
4168
+ readonly type: "text";
4169
+ };
3904
4170
  }];
3905
4171
  };
3906
4172
  readonly label: {
@@ -3941,6 +4207,18 @@ declare const ENTITY_CONFIG: {
3941
4207
  readonly format: {
3942
4208
  readonly type: "text";
3943
4209
  };
4210
+ }, {
4211
+ readonly key: "phase";
4212
+ readonly label: "Phase";
4213
+ readonly format: {
4214
+ readonly type: "text";
4215
+ };
4216
+ }, {
4217
+ readonly key: "subtype_cd";
4218
+ readonly label: "Subtype";
4219
+ readonly format: {
4220
+ readonly type: "text";
4221
+ };
3944
4222
  }];
3945
4223
  };
3946
4224
  readonly label: {
@@ -3981,6 +4259,18 @@ declare const ENTITY_CONFIG: {
3981
4259
  readonly format: {
3982
4260
  readonly type: "text";
3983
4261
  };
4262
+ }, {
4263
+ readonly key: "phase";
4264
+ readonly label: "Phase";
4265
+ readonly format: {
4266
+ readonly type: "text";
4267
+ };
4268
+ }, {
4269
+ readonly key: "subtype_cd";
4270
+ readonly label: "Subtype";
4271
+ readonly format: {
4272
+ readonly type: "text";
4273
+ };
3984
4274
  }];
3985
4275
  };
3986
4276
  readonly label: {
@@ -4021,6 +4311,18 @@ declare const ENTITY_CONFIG: {
4021
4311
  readonly format: {
4022
4312
  readonly type: "text";
4023
4313
  };
4314
+ }, {
4315
+ readonly key: "phase";
4316
+ readonly label: "Phase";
4317
+ readonly format: {
4318
+ readonly type: "text";
4319
+ };
4320
+ }, {
4321
+ readonly key: "subtype_cd";
4322
+ readonly label: "Subtype";
4323
+ readonly format: {
4324
+ readonly type: "text";
4325
+ };
4024
4326
  }];
4025
4327
  };
4026
4328
  readonly label: {
@@ -4066,16 +4368,14 @@ declare const ENTITY_CONFIG: {
4066
4368
  readonly detailPage: true;
4067
4369
  readonly properties: {
4068
4370
  readonly statList: [{
4069
- readonly key: "ratedCurrent";
4070
- readonly label: "Rated Current";
4371
+ readonly key: "size_value";
4372
+ readonly label: "Size";
4071
4373
  readonly format: {
4072
- readonly type: "number";
4073
- readonly unit: "A";
4074
- readonly decimals: 0;
4374
+ readonly type: "text";
4075
4375
  };
4076
4376
  }, {
4077
- readonly key: "deviceType";
4078
- readonly label: "Device Type";
4377
+ readonly key: "phase";
4378
+ readonly label: "Phase";
4079
4379
  readonly format: {
4080
4380
  readonly type: "text";
4081
4381
  };
@@ -4102,16 +4402,14 @@ declare const ENTITY_CONFIG: {
4102
4402
  readonly detailPage: true;
4103
4403
  readonly properties: {
4104
4404
  readonly statList: [{
4105
- readonly key: "ratedCurrent";
4106
- readonly label: "Rated Current";
4405
+ readonly key: "size_value";
4406
+ readonly label: "Size";
4107
4407
  readonly format: {
4108
- readonly type: "number";
4109
- readonly unit: "A";
4110
- readonly decimals: 0;
4408
+ readonly type: "text";
4111
4409
  };
4112
4410
  }, {
4113
- readonly key: "deviceType";
4114
- readonly label: "Device Type";
4411
+ readonly key: "phase";
4412
+ readonly label: "Phase";
4115
4413
  readonly format: {
4116
4414
  readonly type: "text";
4117
4415
  };
@@ -4130,16 +4428,14 @@ declare const ENTITY_CONFIG: {
4130
4428
  readonly detailPage: true;
4131
4429
  readonly properties: {
4132
4430
  readonly statList: [{
4133
- readonly key: "ratedCurrent";
4134
- readonly label: "Rated Current";
4431
+ readonly key: "size_value";
4432
+ readonly label: "Size";
4135
4433
  readonly format: {
4136
- readonly type: "number";
4137
- readonly unit: "A";
4138
- readonly decimals: 0;
4434
+ readonly type: "text";
4139
4435
  };
4140
4436
  }, {
4141
- readonly key: "deviceType";
4142
- readonly label: "Device Type";
4437
+ readonly key: "phase";
4438
+ readonly label: "Phase";
4143
4439
  readonly format: {
4144
4440
  readonly type: "text";
4145
4441
  };
@@ -4166,20 +4462,10 @@ declare const ENTITY_CONFIG: {
4166
4462
  readonly detailPage: true;
4167
4463
  readonly properties: {
4168
4464
  readonly statList: [{
4169
- readonly key: "ratedPower";
4170
- readonly label: "Rated Power";
4465
+ readonly key: "phase";
4466
+ readonly label: "Phase";
4171
4467
  readonly format: {
4172
- readonly type: "power";
4173
- readonly unit: "kW";
4174
- readonly decimals: 1;
4175
- };
4176
- }, {
4177
- readonly key: "outputVoltage";
4178
- readonly label: "Output Voltage";
4179
- readonly format: {
4180
- readonly type: "voltage";
4181
- readonly unit: "V";
4182
- readonly decimals: 0;
4468
+ readonly type: "text";
4183
4469
  };
4184
4470
  }];
4185
4471
  };
@@ -4196,35 +4482,37 @@ declare const ENTITY_CONFIG: {
4196
4482
  readonly detailPage: true;
4197
4483
  readonly properties: {
4198
4484
  readonly statList: [{
4199
- readonly key: "outputVoltagePhA";
4200
- readonly label: "Output Voltage Phase A";
4485
+ readonly key: "rated_kva";
4486
+ readonly label: "Rated kVA";
4201
4487
  readonly format: {
4202
- readonly type: "voltage";
4203
- readonly unit: "V";
4488
+ readonly type: "power";
4489
+ readonly unit: "kVA";
4204
4490
  readonly decimals: 0;
4205
4491
  };
4206
4492
  }, {
4207
- readonly key: "outputVoltagePhB";
4208
- readonly label: "Output Voltage Phase B";
4493
+ readonly key: "phase";
4494
+ readonly label: "Phase";
4209
4495
  readonly format: {
4210
- readonly type: "voltage";
4211
- readonly unit: "V";
4212
- readonly decimals: 0;
4496
+ readonly type: "text";
4213
4497
  };
4214
4498
  }, {
4215
- readonly key: "outputVoltagePhC";
4216
- readonly label: "Output Voltage Phase C";
4499
+ readonly key: "manufacturer";
4500
+ readonly label: "Manufacturer";
4217
4501
  readonly format: {
4218
- readonly type: "voltage";
4219
- readonly unit: "V";
4220
- readonly decimals: 0;
4502
+ readonly type: "text";
4221
4503
  };
4222
4504
  }, {
4223
- readonly key: "ratedPower";
4224
- readonly label: "Rated Power";
4505
+ readonly key: "high_side_configuration";
4506
+ readonly label: "High Side";
4225
4507
  readonly format: {
4226
- readonly type: "power";
4227
- readonly unit: "kVA";
4508
+ readonly type: "text";
4509
+ };
4510
+ }, {
4511
+ readonly key: "forwardSetVoltageV";
4512
+ readonly label: "Forward Set Voltage";
4513
+ readonly format: {
4514
+ readonly type: "voltage";
4515
+ readonly unit: "V";
4228
4516
  readonly decimals: 1;
4229
4517
  };
4230
4518
  }];
@@ -4242,13 +4530,37 @@ declare const ENTITY_CONFIG: {
4242
4530
  readonly detailPage: true;
4243
4531
  readonly properties: {
4244
4532
  readonly statList: [{
4245
- readonly key: "nominalVoltage";
4246
- readonly label: "Nominal Voltage";
4533
+ readonly key: "height";
4534
+ readonly label: "Height";
4247
4535
  readonly format: {
4248
- readonly type: "voltage";
4249
- readonly unit: "V";
4536
+ readonly type: "distance";
4537
+ readonly unit: "ft";
4250
4538
  readonly decimals: 0;
4251
4539
  };
4540
+ }, {
4541
+ readonly key: "class";
4542
+ readonly label: "Class";
4543
+ readonly format: {
4544
+ readonly type: "text";
4545
+ };
4546
+ }, {
4547
+ readonly key: "species";
4548
+ readonly label: "Material";
4549
+ readonly format: {
4550
+ readonly type: "text";
4551
+ };
4552
+ }, {
4553
+ readonly key: "phase";
4554
+ readonly label: "Phase";
4555
+ readonly format: {
4556
+ readonly type: "text";
4557
+ };
4558
+ }, {
4559
+ readonly key: "substation";
4560
+ readonly label: "Substation";
4561
+ readonly format: {
4562
+ readonly type: "text";
4563
+ };
4252
4564
  }];
4253
4565
  };
4254
4566
  readonly label: {
@@ -4694,7 +5006,7 @@ declare const GRID_ELEMENT_TYPE_BY_ENTITY: {
4694
5006
  readonly breaker: "OVERCURRENT_DEVICE";
4695
5007
  readonly generator: "GENERATOR";
4696
5008
  readonly regulator: "REGULATOR";
4697
- readonly supportStructure: "NODE";
5009
+ readonly supportStructure: "SUPPORT_STRUCTURE";
4698
5010
  };
4699
5011
  /**
4700
5012
  * Get entity configuration by type