@energycap/energycap-sdk-angular 8.2604.120-develop-20260429-1242 → 8.2604.122-develop-sdk-missing-enum-20260429-1328
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/package.json
CHANGED
|
@@ -6288,7 +6288,9 @@ declare class AuthenticationService {
|
|
|
6288
6288
|
};
|
|
6289
6289
|
}, extraHttpRequestHeaders?: {
|
|
6290
6290
|
[header: string]: string | string[];
|
|
6291
|
-
}): Observable<
|
|
6291
|
+
}): Observable<{
|
|
6292
|
+
[key: string]: boolean;
|
|
6293
|
+
}>;
|
|
6292
6294
|
/**
|
|
6293
6295
|
* My.EnergyCap.Com needs a way to get a token from a partition name. Pass in a partition, create and return a token for provided partition.
|
|
6294
6296
|
*
|
|
@@ -6334,7 +6336,9 @@ declare class AuthenticationService {
|
|
|
6334
6336
|
};
|
|
6335
6337
|
}, extraHttpRequestHeaders?: {
|
|
6336
6338
|
[header: string]: string | string[];
|
|
6337
|
-
}): Observable<HttpResponse<
|
|
6339
|
+
}): Observable<HttpResponse<{
|
|
6340
|
+
[key: string]: boolean;
|
|
6341
|
+
}>>;
|
|
6338
6342
|
/**
|
|
6339
6343
|
* My.EnergyCap.Com needs a way to get a token from a partition name. Pass in a partition, create and return a token for provided partition.
|
|
6340
6344
|
*
|
|
@@ -9655,7 +9659,9 @@ declare class JsonBillExportPlace {
|
|
|
9655
9659
|
/**
|
|
9656
9660
|
*
|
|
9657
9661
|
*/
|
|
9658
|
-
customFields:
|
|
9662
|
+
customFields: {
|
|
9663
|
+
[key: string]: string;
|
|
9664
|
+
} | null | undefined;
|
|
9659
9665
|
}
|
|
9660
9666
|
|
|
9661
9667
|
/**
|
|
@@ -9695,7 +9701,9 @@ declare class JsonBillExportMeter {
|
|
|
9695
9701
|
/**
|
|
9696
9702
|
*
|
|
9697
9703
|
*/
|
|
9698
|
-
customFields:
|
|
9704
|
+
customFields: {
|
|
9705
|
+
[key: string]: string;
|
|
9706
|
+
} | null | undefined;
|
|
9699
9707
|
/**
|
|
9700
9708
|
*
|
|
9701
9709
|
*/
|
|
@@ -9755,7 +9763,9 @@ declare class JsonBillExportVendor {
|
|
|
9755
9763
|
/**
|
|
9756
9764
|
*
|
|
9757
9765
|
*/
|
|
9758
|
-
customFields:
|
|
9766
|
+
customFields: {
|
|
9767
|
+
[key: string]: string;
|
|
9768
|
+
} | null | undefined;
|
|
9759
9769
|
}
|
|
9760
9770
|
|
|
9761
9771
|
/**
|
|
@@ -9789,7 +9799,9 @@ declare class JsonBillExportAccount {
|
|
|
9789
9799
|
/**
|
|
9790
9800
|
*
|
|
9791
9801
|
*/
|
|
9792
|
-
customFields:
|
|
9802
|
+
customFields: {
|
|
9803
|
+
[key: string]: string;
|
|
9804
|
+
} | null | undefined;
|
|
9793
9805
|
/**
|
|
9794
9806
|
*
|
|
9795
9807
|
*/
|
|
@@ -23630,7 +23642,7 @@ declare class EsaChannelVersionCreate {
|
|
|
23630
23642
|
/**
|
|
23631
23643
|
* Indicates the channel observation rule Demand channels cannot have the odometer observation rule <span class='property-internal'>Required</span> <span class='property-internal'>Must be a valid value for ObservationRuleEnum: Odometer = 1, Trip = 2</span>
|
|
23632
23644
|
*/
|
|
23633
|
-
observationRuleId:
|
|
23645
|
+
observationRuleId: EsaChannelVersionCreate.ObservationRuleIdEnum;
|
|
23634
23646
|
/**
|
|
23635
23647
|
* The channel multiplier <span class='property-internal'>Must be between -9999999999999 and 9999999999999</span> <span class='property-internal'>Required</span> <span class='property-internal'>Max scale of 15, max precision of 30</span>
|
|
23636
23648
|
*/
|
|
@@ -23668,6 +23680,12 @@ declare class EsaChannelVersionCreate {
|
|
|
23668
23680
|
*/
|
|
23669
23681
|
formula: string | null | undefined;
|
|
23670
23682
|
}
|
|
23683
|
+
declare namespace EsaChannelVersionCreate {
|
|
23684
|
+
enum ObservationRuleIdEnum {
|
|
23685
|
+
NUMBER_1,
|
|
23686
|
+
NUMBER_2
|
|
23687
|
+
}
|
|
23688
|
+
}
|
|
23671
23689
|
|
|
23672
23690
|
/**
|
|
23673
23691
|
* EnergyCAP SDK
|
|
@@ -23744,7 +23762,7 @@ declare class EsaChannelVersionEdit {
|
|
|
23744
23762
|
/**
|
|
23745
23763
|
* Indicates the channel observation rule Demand channels cannot have the odometer observation rule <span class='property-internal'>Required</span> <span class='property-internal'>Must be a valid value for ObservationRuleEnum: Odometer = 1, Trip = 2</span>
|
|
23746
23764
|
*/
|
|
23747
|
-
observationRuleId:
|
|
23765
|
+
observationRuleId: EsaChannelVersionEdit.ObservationRuleIdEnum;
|
|
23748
23766
|
/**
|
|
23749
23767
|
* The channel multiplier <span class='property-internal'>Must be between -9999999999999 and 9999999999999</span> <span class='property-internal'>Required</span> <span class='property-internal'>Max scale of 15, max precision of 30</span>
|
|
23750
23768
|
*/
|
|
@@ -23782,6 +23800,12 @@ declare class EsaChannelVersionEdit {
|
|
|
23782
23800
|
*/
|
|
23783
23801
|
formula: string | null | undefined;
|
|
23784
23802
|
}
|
|
23803
|
+
declare namespace EsaChannelVersionEdit {
|
|
23804
|
+
enum ObservationRuleIdEnum {
|
|
23805
|
+
NUMBER_1,
|
|
23806
|
+
NUMBER_2
|
|
23807
|
+
}
|
|
23808
|
+
}
|
|
23785
23809
|
|
|
23786
23810
|
/**
|
|
23787
23811
|
* EnergyCAP SDK
|
|
@@ -24119,7 +24143,7 @@ declare class EsaChannelVersionCreateWithBeginDate {
|
|
|
24119
24143
|
/**
|
|
24120
24144
|
* Indicates the channel observation rule Demand channels cannot have the odometer observation rule <span class='property-internal'>Required</span> <span class='property-internal'>Must be a valid value for ObservationRuleEnum: Odometer = 1, Trip = 2</span>
|
|
24121
24145
|
*/
|
|
24122
|
-
observationRuleId:
|
|
24146
|
+
observationRuleId: EsaChannelVersionCreateWithBeginDate.ObservationRuleIdEnum;
|
|
24123
24147
|
/**
|
|
24124
24148
|
* The channel multiplier <span class='property-internal'>Must be between -9999999999999 and 9999999999999</span> <span class='property-internal'>Required</span> <span class='property-internal'>Max scale of 15, max precision of 30</span>
|
|
24125
24149
|
*/
|
|
@@ -24157,6 +24181,12 @@ declare class EsaChannelVersionCreateWithBeginDate {
|
|
|
24157
24181
|
*/
|
|
24158
24182
|
formula: string | null | undefined;
|
|
24159
24183
|
}
|
|
24184
|
+
declare namespace EsaChannelVersionCreateWithBeginDate {
|
|
24185
|
+
enum ObservationRuleIdEnum {
|
|
24186
|
+
NUMBER_1,
|
|
24187
|
+
NUMBER_2
|
|
24188
|
+
}
|
|
24189
|
+
}
|
|
24160
24190
|
|
|
24161
24191
|
declare class EsaChannelService {
|
|
24162
24192
|
protected http: HttpClient;
|
|
@@ -26378,7 +26408,7 @@ declare class FlagIssueEdit {
|
|
|
26378
26408
|
/**
|
|
26379
26409
|
* Current status of the flag issue <span class='property-internal'>Must be a valid value for FlagStatusEnum: Unresolved = 1, Resolved = 2</span> <span class='property-internal'>Required (defined)</span>
|
|
26380
26410
|
*/
|
|
26381
|
-
flagIssueStatusId:
|
|
26411
|
+
flagIssueStatusId: FlagIssueEdit.FlagIssueStatusIdEnum;
|
|
26382
26412
|
/**
|
|
26383
26413
|
* Comment about the flag issue <span class='property-internal'>Required (defined)</span>
|
|
26384
26414
|
*/
|
|
@@ -26388,6 +26418,12 @@ declare class FlagIssueEdit {
|
|
|
26388
26418
|
*/
|
|
26389
26419
|
assignees: Array<number> | null | undefined;
|
|
26390
26420
|
}
|
|
26421
|
+
declare namespace FlagIssueEdit {
|
|
26422
|
+
enum FlagIssueStatusIdEnum {
|
|
26423
|
+
NUMBER_1,
|
|
26424
|
+
NUMBER_2
|
|
26425
|
+
}
|
|
26426
|
+
}
|
|
26391
26427
|
|
|
26392
26428
|
/**
|
|
26393
26429
|
* EnergyCAP SDK
|
|
@@ -26404,7 +26440,7 @@ declare class FlagIssueEditAction {
|
|
|
26404
26440
|
/**
|
|
26405
26441
|
* Current status of the flag issue <span class='property-internal'>Must be a valid value for FlagStatusEnum: Unresolved = 1, Resolved = 2</span> <span class='property-internal'>Required (defined)</span>
|
|
26406
26442
|
*/
|
|
26407
|
-
flagIssueStatusId:
|
|
26443
|
+
flagIssueStatusId: FlagIssueEditAction.FlagIssueStatusIdEnum;
|
|
26408
26444
|
/**
|
|
26409
26445
|
* Comment about the flag issue <span class='property-internal'>Required (defined)</span>
|
|
26410
26446
|
*/
|
|
@@ -26414,6 +26450,12 @@ declare class FlagIssueEditAction {
|
|
|
26414
26450
|
*/
|
|
26415
26451
|
assignees: Array<number> | null | undefined;
|
|
26416
26452
|
}
|
|
26453
|
+
declare namespace FlagIssueEditAction {
|
|
26454
|
+
enum FlagIssueStatusIdEnum {
|
|
26455
|
+
NUMBER_1,
|
|
26456
|
+
NUMBER_2
|
|
26457
|
+
}
|
|
26458
|
+
}
|
|
26417
26459
|
|
|
26418
26460
|
/**
|
|
26419
26461
|
* EnergyCAP SDK
|
|
@@ -30310,7 +30352,26 @@ declare class EsaReadingImportRequest {
|
|
|
30310
30352
|
/**
|
|
30311
30353
|
* The type of notification to send when the import is completed with errors. Default is \"SystemMessages\". <span class='property-internal'>Must be a valid value for NotificationTypeEnum: SystemMessages = 1, BillImportAutomation = 2, BillExportToApAutomation = 3, IntervalDataAutomation = 4, UserGroupMessages = 5, UpdatesAndNewFeatures = 6, HelpArticlesTipsAndSuggestions = 7, CustomerServiceMessages = 8, EnergyStarSubmissionFailures = 9, BillExportToGlAutomation = 10, AutomaticallyCreatedMetersOrAccounts = 11, ExceededLicensedObjectCount = 12, BillCaptureAutomation = 13, TrendInsights = 14, ESADataImports = 15</span>
|
|
30312
30354
|
*/
|
|
30313
|
-
completeWithErrorsNotificationType:
|
|
30355
|
+
completeWithErrorsNotificationType: EsaReadingImportRequest.CompleteWithErrorsNotificationTypeEnum;
|
|
30356
|
+
}
|
|
30357
|
+
declare namespace EsaReadingImportRequest {
|
|
30358
|
+
enum CompleteWithErrorsNotificationTypeEnum {
|
|
30359
|
+
NUMBER_1,
|
|
30360
|
+
NUMBER_2,
|
|
30361
|
+
NUMBER_3,
|
|
30362
|
+
NUMBER_4,
|
|
30363
|
+
NUMBER_5,
|
|
30364
|
+
NUMBER_6,
|
|
30365
|
+
NUMBER_7,
|
|
30366
|
+
NUMBER_8,
|
|
30367
|
+
NUMBER_9,
|
|
30368
|
+
NUMBER_10,
|
|
30369
|
+
NUMBER_11,
|
|
30370
|
+
NUMBER_12,
|
|
30371
|
+
NUMBER_13,
|
|
30372
|
+
NUMBER_14,
|
|
30373
|
+
NUMBER_15
|
|
30374
|
+
}
|
|
30314
30375
|
}
|
|
30315
30376
|
|
|
30316
30377
|
/**
|
|
@@ -32216,7 +32277,9 @@ declare class ListResponse {
|
|
|
32216
32277
|
/**
|
|
32217
32278
|
* Meta data about the list Can contain: TotalCount - Total number of items that match the filter TotalCost - Total Cost of all the items that match the filter costUnitInfo - The currency unit ErrorMessage - Indicates data fetch error.
|
|
32218
32279
|
*/
|
|
32219
|
-
meta:
|
|
32280
|
+
meta: {
|
|
32281
|
+
[key: string]: any;
|
|
32282
|
+
} | null | undefined;
|
|
32220
32283
|
}
|
|
32221
32284
|
|
|
32222
32285
|
declare class ListService {
|
|
@@ -33930,7 +33993,9 @@ declare class EnergyCapOptionsEnergyCapIDOptions {
|
|
|
33930
33993
|
/**
|
|
33931
33994
|
*
|
|
33932
33995
|
*/
|
|
33933
|
-
loginAuthorityMap:
|
|
33996
|
+
loginAuthorityMap: {
|
|
33997
|
+
[key: string]: string;
|
|
33998
|
+
} | null | undefined;
|
|
33934
33999
|
}
|
|
33935
34000
|
|
|
33936
34001
|
/**
|
|
@@ -40447,7 +40512,9 @@ declare class MeterCreate {
|
|
|
40447
40512
|
/**
|
|
40448
40513
|
* An array of meter properties
|
|
40449
40514
|
*/
|
|
40450
|
-
properties:
|
|
40515
|
+
properties: {
|
|
40516
|
+
[key: string]: string;
|
|
40517
|
+
} | null | undefined;
|
|
40451
40518
|
/**
|
|
40452
40519
|
* The identifier for the meter's primary use
|
|
40453
40520
|
*/
|
|
@@ -40527,7 +40594,9 @@ declare class MeterEdit {
|
|
|
40527
40594
|
/**
|
|
40528
40595
|
* An array of meter properties <span class='property-internal'>Required (defined)</span>
|
|
40529
40596
|
*/
|
|
40530
|
-
properties:
|
|
40597
|
+
properties: {
|
|
40598
|
+
[key: string]: string;
|
|
40599
|
+
} | null | undefined;
|
|
40531
40600
|
/**
|
|
40532
40601
|
* The use unit ID is the reporting unit for use for this meter. If it is null the use unit will be removed (only if the commodity does not have a default use unit, otherwise an exception will be thrown) <span class='property-internal'>Required (defined)</span>
|
|
40533
40602
|
*/
|
|
@@ -40885,7 +40954,9 @@ declare class MeterResponse {
|
|
|
40885
40954
|
/**
|
|
40886
40955
|
* An array of meter properties
|
|
40887
40956
|
*/
|
|
40888
|
-
properties:
|
|
40957
|
+
properties: {
|
|
40958
|
+
[key: string]: string;
|
|
40959
|
+
} | null | undefined;
|
|
40889
40960
|
/**
|
|
40890
40961
|
* Indicates if the meter should be included in cost avoidance
|
|
40891
40962
|
*/
|
|
@@ -55546,7 +55617,7 @@ declare class ScheduleDayCreate {
|
|
|
55546
55617
|
/**
|
|
55547
55618
|
* The day of week that this record refers to. <span class='property-internal'>Required</span> <span class='property-internal'>Must be a valid value for DayOfWeek: Sunday = 0, Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday = 6</span>
|
|
55548
55619
|
*/
|
|
55549
|
-
dayOfWeek:
|
|
55620
|
+
dayOfWeek: ScheduleDayCreate.DayOfWeekEnum;
|
|
55550
55621
|
/**
|
|
55551
55622
|
* The time of day that this schedule begins. It is serialized as a \"HH:MM:SS\" string. For example, \"17:29:59\". Should only be informed when Is24Hours = false AND IsClosed = false, otherwise it should be null. <span class='property-internal'>Must be null when IsClosed, or Is24Hours are set to True, case sensitive</span>
|
|
55552
55623
|
*/
|
|
@@ -55564,6 +55635,17 @@ declare class ScheduleDayCreate {
|
|
|
55564
55635
|
*/
|
|
55565
55636
|
isClosed: boolean | null | undefined;
|
|
55566
55637
|
}
|
|
55638
|
+
declare namespace ScheduleDayCreate {
|
|
55639
|
+
enum DayOfWeekEnum {
|
|
55640
|
+
NUMBER_0,
|
|
55641
|
+
NUMBER_1,
|
|
55642
|
+
NUMBER_2,
|
|
55643
|
+
NUMBER_3,
|
|
55644
|
+
NUMBER_4,
|
|
55645
|
+
NUMBER_5,
|
|
55646
|
+
NUMBER_6
|
|
55647
|
+
}
|
|
55648
|
+
}
|
|
55567
55649
|
|
|
55568
55650
|
/**
|
|
55569
55651
|
* EnergyCAP SDK
|
|
@@ -56182,7 +56264,9 @@ declare class SearchMeterChildSearchMeterChild {
|
|
|
56182
56264
|
/**
|
|
56183
56265
|
* An array of meter properties
|
|
56184
56266
|
*/
|
|
56185
|
-
properties:
|
|
56267
|
+
properties: {
|
|
56268
|
+
[key: string]: string;
|
|
56269
|
+
} | null | undefined;
|
|
56186
56270
|
/**
|
|
56187
56271
|
* The collection of places representing the path to its parent
|
|
56188
56272
|
*/
|
|
@@ -61060,7 +61144,9 @@ declare class AddressLookup {
|
|
|
61060
61144
|
/**
|
|
61061
61145
|
*
|
|
61062
61146
|
*/
|
|
61063
|
-
locationProperties:
|
|
61147
|
+
locationProperties: {
|
|
61148
|
+
[key: string]: any;
|
|
61149
|
+
} | null | undefined;
|
|
61064
61150
|
}
|
|
61065
61151
|
|
|
61066
61152
|
/**
|
|
@@ -62769,7 +62855,14 @@ declare class WattsChatMessageResponse {
|
|
|
62769
62855
|
/**
|
|
62770
62856
|
* Watts chat message role. 1-User, 2-Assistant, 3-Error. <span class='property-internal'>Must be a valid value for WattsChatMessageRole: User = 1, Assistant = 2, Error = 3</span>
|
|
62771
62857
|
*/
|
|
62772
|
-
wattsChatMessageRole:
|
|
62858
|
+
wattsChatMessageRole: WattsChatMessageResponse.WattsChatMessageRoleEnum;
|
|
62859
|
+
}
|
|
62860
|
+
declare namespace WattsChatMessageResponse {
|
|
62861
|
+
enum WattsChatMessageRoleEnum {
|
|
62862
|
+
NUMBER_1,
|
|
62863
|
+
NUMBER_2,
|
|
62864
|
+
NUMBER_3
|
|
62865
|
+
}
|
|
62773
62866
|
}
|
|
62774
62867
|
|
|
62775
62868
|
/**
|
|
@@ -90371,6 +90464,7 @@ declare class PlaceGroupDigestWeatherRankingResponse {
|
|
|
90371
90464
|
* Do not edit the class manually.
|
|
90372
90465
|
*/
|
|
90373
90466
|
declare class ProblemDetails {
|
|
90467
|
+
[key: string]: any | any;
|
|
90374
90468
|
/**
|
|
90375
90469
|
*
|
|
90376
90470
|
*/
|