@energycap/energycap-sdk-angular 8.2605.148-develop-20260513-2126 → 8.2605.150-develop-20260515-1423
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.
|
@@ -54,7 +54,7 @@ class Configuration {
|
|
|
54
54
|
* Do not edit the class manually.
|
|
55
55
|
*/
|
|
56
56
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
57
|
-
const RequestMethod$
|
|
57
|
+
const RequestMethod$33 = {
|
|
58
58
|
Get: 'get',
|
|
59
59
|
Post: 'post',
|
|
60
60
|
Put: 'put',
|
|
@@ -557,7 +557,7 @@ class AccountService {
|
|
|
557
557
|
withCredentials: this.configuration.withCredentials,
|
|
558
558
|
observe: 'response'
|
|
559
559
|
};
|
|
560
|
-
return this.http.request(RequestMethod$
|
|
560
|
+
return this.http.request(RequestMethod$33.Post, path, requestOptions);
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
563
563
|
* Creates an account alert
|
|
@@ -614,7 +614,7 @@ class AccountService {
|
|
|
614
614
|
withCredentials: this.configuration.withCredentials,
|
|
615
615
|
observe: 'response'
|
|
616
616
|
};
|
|
617
|
-
return this.http.request(RequestMethod$
|
|
617
|
+
return this.http.request(RequestMethod$33.Post, path, requestOptions);
|
|
618
618
|
}
|
|
619
619
|
/**
|
|
620
620
|
* Deletes an account. Currently NO confirmation is required
|
|
@@ -668,7 +668,7 @@ class AccountService {
|
|
|
668
668
|
withCredentials: this.configuration.withCredentials,
|
|
669
669
|
observe: 'response'
|
|
670
670
|
};
|
|
671
|
-
return this.http.request(RequestMethod$
|
|
671
|
+
return this.http.request(RequestMethod$33.Delete, path, requestOptions);
|
|
672
672
|
}
|
|
673
673
|
/**
|
|
674
674
|
* Deletes an account alert.
|
|
@@ -724,7 +724,7 @@ class AccountService {
|
|
|
724
724
|
withCredentials: this.configuration.withCredentials,
|
|
725
725
|
observe: 'response'
|
|
726
726
|
};
|
|
727
|
-
return this.http.request(RequestMethod$
|
|
727
|
+
return this.http.request(RequestMethod$33.Delete, path, requestOptions);
|
|
728
728
|
}
|
|
729
729
|
/**
|
|
730
730
|
* Download file for an account custom field
|
|
@@ -780,7 +780,7 @@ class AccountService {
|
|
|
780
780
|
withCredentials: this.configuration.withCredentials,
|
|
781
781
|
observe: 'response'
|
|
782
782
|
};
|
|
783
|
-
return this.http.request(RequestMethod$
|
|
783
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
784
784
|
}
|
|
785
785
|
/**
|
|
786
786
|
* Edits an account
|
|
@@ -837,7 +837,7 @@ class AccountService {
|
|
|
837
837
|
withCredentials: this.configuration.withCredentials,
|
|
838
838
|
observe: 'response'
|
|
839
839
|
};
|
|
840
|
-
return this.http.request(RequestMethod$
|
|
840
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
841
841
|
}
|
|
842
842
|
/**
|
|
843
843
|
*
|
|
@@ -894,7 +894,7 @@ class AccountService {
|
|
|
894
894
|
withCredentials: this.configuration.withCredentials,
|
|
895
895
|
observe: 'response'
|
|
896
896
|
};
|
|
897
|
-
return this.http.request(RequestMethod$
|
|
897
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
898
898
|
}
|
|
899
899
|
/**
|
|
900
900
|
* Edits user defined field / custom field values for a particular account
|
|
@@ -951,7 +951,7 @@ class AccountService {
|
|
|
951
951
|
withCredentials: this.configuration.withCredentials,
|
|
952
952
|
observe: 'response'
|
|
953
953
|
};
|
|
954
|
-
return this.http.request(RequestMethod$
|
|
954
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
955
955
|
}
|
|
956
956
|
/**
|
|
957
957
|
* Retrieves one account
|
|
@@ -1003,7 +1003,7 @@ class AccountService {
|
|
|
1003
1003
|
withCredentials: this.configuration.withCredentials,
|
|
1004
1004
|
observe: 'response'
|
|
1005
1005
|
};
|
|
1006
|
-
return this.http.request(RequestMethod$
|
|
1006
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1007
1007
|
}
|
|
1008
1008
|
/**
|
|
1009
1009
|
* Retrieves an alert for an account
|
|
@@ -1061,7 +1061,7 @@ class AccountService {
|
|
|
1061
1061
|
withCredentials: this.configuration.withCredentials,
|
|
1062
1062
|
observe: 'response'
|
|
1063
1063
|
};
|
|
1064
|
-
return this.http.request(RequestMethod$
|
|
1064
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1065
1065
|
}
|
|
1066
1066
|
/**
|
|
1067
1067
|
* Retrieves all alerts for an account
|
|
@@ -1113,7 +1113,7 @@ class AccountService {
|
|
|
1113
1113
|
withCredentials: this.configuration.withCredentials,
|
|
1114
1114
|
observe: 'response'
|
|
1115
1115
|
};
|
|
1116
|
-
return this.http.request(RequestMethod$
|
|
1116
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1117
1117
|
}
|
|
1118
1118
|
/**
|
|
1119
1119
|
* Gets all account audit setting overrides
|
|
@@ -1165,7 +1165,7 @@ class AccountService {
|
|
|
1165
1165
|
withCredentials: this.configuration.withCredentials,
|
|
1166
1166
|
observe: 'response'
|
|
1167
1167
|
};
|
|
1168
|
-
return this.http.request(RequestMethod$
|
|
1168
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1169
1169
|
}
|
|
1170
1170
|
/**
|
|
1171
1171
|
* Retrieves all rates for a particular account
|
|
@@ -1217,7 +1217,7 @@ class AccountService {
|
|
|
1217
1217
|
withCredentials: this.configuration.withCredentials,
|
|
1218
1218
|
observe: 'response'
|
|
1219
1219
|
};
|
|
1220
|
-
return this.http.request(RequestMethod$
|
|
1220
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1221
1221
|
}
|
|
1222
1222
|
/**
|
|
1223
1223
|
* Retrieves all templates for a particular account
|
|
@@ -1269,7 +1269,7 @@ class AccountService {
|
|
|
1269
1269
|
withCredentials: this.configuration.withCredentials,
|
|
1270
1270
|
observe: 'response'
|
|
1271
1271
|
};
|
|
1272
|
-
return this.http.request(RequestMethod$
|
|
1272
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1273
1273
|
}
|
|
1274
1274
|
/**
|
|
1275
1275
|
* Retrieves all user defined fields / custom fields for a particular account
|
|
@@ -1321,7 +1321,7 @@ class AccountService {
|
|
|
1321
1321
|
withCredentials: this.configuration.withCredentials,
|
|
1322
1322
|
observe: 'response'
|
|
1323
1323
|
};
|
|
1324
|
-
return this.http.request(RequestMethod$
|
|
1324
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1325
1325
|
}
|
|
1326
1326
|
/**
|
|
1327
1327
|
* Retrieves all accounts
|
|
@@ -1379,7 +1379,7 @@ class AccountService {
|
|
|
1379
1379
|
withCredentials: this.configuration.withCredentials,
|
|
1380
1380
|
observe: 'response'
|
|
1381
1381
|
};
|
|
1382
|
-
return this.http.request(RequestMethod$
|
|
1382
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1383
1383
|
}
|
|
1384
1384
|
/**
|
|
1385
1385
|
* Retrieves all user defined fields / custom fields for all accounts
|
|
@@ -1437,7 +1437,7 @@ class AccountService {
|
|
|
1437
1437
|
withCredentials: this.configuration.withCredentials,
|
|
1438
1438
|
observe: 'response'
|
|
1439
1439
|
};
|
|
1440
|
-
return this.http.request(RequestMethod$
|
|
1440
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1441
1441
|
}
|
|
1442
1442
|
/**
|
|
1443
1443
|
* For a given accountId, startDate and endDates for a bill get a billing period recommendation The billing period will be in YYYYMM format YYYY represents the 4 digit year and MM is the two digit month 01 for Jan to 12 for Dec
|
|
@@ -1497,7 +1497,7 @@ class AccountService {
|
|
|
1497
1497
|
withCredentials: this.configuration.withCredentials,
|
|
1498
1498
|
observe: 'response'
|
|
1499
1499
|
};
|
|
1500
|
-
return this.http.request(RequestMethod$
|
|
1500
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1501
1501
|
}
|
|
1502
1502
|
/**
|
|
1503
1503
|
* Move list of accounts to be under parentCostCenterId
|
|
@@ -1554,7 +1554,7 @@ class AccountService {
|
|
|
1554
1554
|
withCredentials: this.configuration.withCredentials,
|
|
1555
1555
|
observe: 'response'
|
|
1556
1556
|
};
|
|
1557
|
-
return this.http.request(RequestMethod$
|
|
1557
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
1558
1558
|
}
|
|
1559
1559
|
/**
|
|
1560
1560
|
* Fires a custom account action. Custom account actions are setup as webhooks
|
|
@@ -1605,7 +1605,7 @@ class AccountService {
|
|
|
1605
1605
|
withCredentials: this.configuration.withCredentials,
|
|
1606
1606
|
observe: 'response'
|
|
1607
1607
|
};
|
|
1608
|
-
return this.http.request(RequestMethod$
|
|
1608
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
1609
1609
|
}
|
|
1610
1610
|
/**
|
|
1611
1611
|
* Search for accounts Search for accounts whose account code, address, old account code, meter serial number, or meter address contains \"query\"
|
|
@@ -1659,7 +1659,7 @@ class AccountService {
|
|
|
1659
1659
|
withCredentials: this.configuration.withCredentials,
|
|
1660
1660
|
observe: 'response'
|
|
1661
1661
|
};
|
|
1662
|
-
return this.http.request(RequestMethod$
|
|
1662
|
+
return this.http.request(RequestMethod$33.Get, path, requestOptions);
|
|
1663
1663
|
}
|
|
1664
1664
|
/**
|
|
1665
1665
|
* Enable or disable Accounts from audits
|
|
@@ -1710,7 +1710,7 @@ class AccountService {
|
|
|
1710
1710
|
withCredentials: this.configuration.withCredentials,
|
|
1711
1711
|
observe: 'response'
|
|
1712
1712
|
};
|
|
1713
|
-
return this.http.request(RequestMethod$
|
|
1713
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
1714
1714
|
}
|
|
1715
1715
|
/**
|
|
1716
1716
|
* Updates an account alert
|
|
@@ -1773,7 +1773,7 @@ class AccountService {
|
|
|
1773
1773
|
withCredentials: this.configuration.withCredentials,
|
|
1774
1774
|
observe: 'response'
|
|
1775
1775
|
};
|
|
1776
|
-
return this.http.request(RequestMethod$
|
|
1776
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
1777
1777
|
}
|
|
1778
1778
|
/**
|
|
1779
1779
|
* Update audit settings for an account. Every audit must be included but supplying null for its settings will remove them.
|
|
@@ -1830,7 +1830,7 @@ class AccountService {
|
|
|
1830
1830
|
withCredentials: this.configuration.withCredentials,
|
|
1831
1831
|
observe: 'response'
|
|
1832
1832
|
};
|
|
1833
|
-
return this.http.request(RequestMethod$
|
|
1833
|
+
return this.http.request(RequestMethod$33.Put, path, requestOptions);
|
|
1834
1834
|
}
|
|
1835
1835
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccountService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1836
1836
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccountService });
|
|
@@ -1858,7 +1858,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
1858
1858
|
* Do not edit the class manually.
|
|
1859
1859
|
*/
|
|
1860
1860
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
1861
|
-
const RequestMethod$
|
|
1861
|
+
const RequestMethod$32 = {
|
|
1862
1862
|
Get: 'get',
|
|
1863
1863
|
Post: 'post',
|
|
1864
1864
|
Put: 'put',
|
|
@@ -2033,7 +2033,7 @@ class AccountDigestService {
|
|
|
2033
2033
|
withCredentials: this.configuration.withCredentials,
|
|
2034
2034
|
observe: 'response'
|
|
2035
2035
|
};
|
|
2036
|
-
return this.http.request(RequestMethod$
|
|
2036
|
+
return this.http.request(RequestMethod$32.Get, path, requestOptions);
|
|
2037
2037
|
}
|
|
2038
2038
|
/**
|
|
2039
2039
|
* Retrieves rolled up actual billing data by account for a given number of years- Result includes cost, use, unit cost on a monthly basis. It also includes commodity level break up.
|
|
@@ -2091,7 +2091,7 @@ class AccountDigestService {
|
|
|
2091
2091
|
withCredentials: this.configuration.withCredentials,
|
|
2092
2092
|
observe: 'response'
|
|
2093
2093
|
};
|
|
2094
|
-
return this.http.request(RequestMethod$
|
|
2094
|
+
return this.http.request(RequestMethod$32.Get, path, requestOptions);
|
|
2095
2095
|
}
|
|
2096
2096
|
/**
|
|
2097
2097
|
* Retrieves rolled up actual billing data by account for a given number of years- Result includes cost, use, unit cost on an yearly basis. It also includes commodity level break up.
|
|
@@ -2147,7 +2147,7 @@ class AccountDigestService {
|
|
|
2147
2147
|
withCredentials: this.configuration.withCredentials,
|
|
2148
2148
|
observe: 'response'
|
|
2149
2149
|
};
|
|
2150
|
-
return this.http.request(RequestMethod$
|
|
2150
|
+
return this.http.request(RequestMethod$32.Get, path, requestOptions);
|
|
2151
2151
|
}
|
|
2152
2152
|
/**
|
|
2153
2153
|
* Retrieves rolled up actual billing data by account for a given number of years- Result includes cost, use, unit cost on an yearly basis. It also includes commodity level break up.
|
|
@@ -2205,7 +2205,7 @@ class AccountDigestService {
|
|
|
2205
2205
|
withCredentials: this.configuration.withCredentials,
|
|
2206
2206
|
observe: 'response'
|
|
2207
2207
|
};
|
|
2208
|
-
return this.http.request(RequestMethod$
|
|
2208
|
+
return this.http.request(RequestMethod$32.Get, path, requestOptions);
|
|
2209
2209
|
}
|
|
2210
2210
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccountDigestService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2211
2211
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccountDigestService });
|
|
@@ -2233,7 +2233,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
2233
2233
|
* Do not edit the class manually.
|
|
2234
2234
|
*/
|
|
2235
2235
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
2236
|
-
const RequestMethod$
|
|
2236
|
+
const RequestMethod$31 = {
|
|
2237
2237
|
Get: 'get',
|
|
2238
2238
|
Post: 'post',
|
|
2239
2239
|
Put: 'put',
|
|
@@ -2469,7 +2469,7 @@ class AccountMeterService {
|
|
|
2469
2469
|
withCredentials: this.configuration.withCredentials,
|
|
2470
2470
|
observe: 'response'
|
|
2471
2471
|
};
|
|
2472
|
-
return this.http.request(RequestMethod$
|
|
2472
|
+
return this.http.request(RequestMethod$31.Post, path, requestOptions);
|
|
2473
2473
|
}
|
|
2474
2474
|
/**
|
|
2475
2475
|
* Creates an AccountRate Relationship. Linking AccountMeter and Rate
|
|
@@ -2526,7 +2526,7 @@ class AccountMeterService {
|
|
|
2526
2526
|
withCredentials: this.configuration.withCredentials,
|
|
2527
2527
|
observe: 'response'
|
|
2528
2528
|
};
|
|
2529
|
-
return this.http.request(RequestMethod$
|
|
2529
|
+
return this.http.request(RequestMethod$31.Post, path, requestOptions);
|
|
2530
2530
|
}
|
|
2531
2531
|
/**
|
|
2532
2532
|
* Assigns a new template to an account meter. The new template's begin date must be after the begin date of all existing template assignments
|
|
@@ -2583,7 +2583,7 @@ class AccountMeterService {
|
|
|
2583
2583
|
withCredentials: this.configuration.withCredentials,
|
|
2584
2584
|
observe: 'response'
|
|
2585
2585
|
};
|
|
2586
|
-
return this.http.request(RequestMethod$
|
|
2586
|
+
return this.http.request(RequestMethod$31.Post, path, requestOptions);
|
|
2587
2587
|
}
|
|
2588
2588
|
/**
|
|
2589
2589
|
* Delete an account meter
|
|
@@ -2637,7 +2637,7 @@ class AccountMeterService {
|
|
|
2637
2637
|
withCredentials: this.configuration.withCredentials,
|
|
2638
2638
|
observe: 'response'
|
|
2639
2639
|
};
|
|
2640
|
-
return this.http.request(RequestMethod$
|
|
2640
|
+
return this.http.request(RequestMethod$31.Delete, path, requestOptions);
|
|
2641
2641
|
}
|
|
2642
2642
|
/**
|
|
2643
2643
|
* Delete an template assignment from an account meter If we are deleting a template assignment in the middle of two other template assignments, then we will move back the next template's start date If we are deleting the last template(current template), the extend second last template's end date to match the account meter's end date If we are deleting the first template pull the second template's begin date to match account meter's begin date
|
|
@@ -2693,7 +2693,7 @@ class AccountMeterService {
|
|
|
2693
2693
|
withCredentials: this.configuration.withCredentials,
|
|
2694
2694
|
observe: 'response'
|
|
2695
2695
|
};
|
|
2696
|
-
return this.http.request(RequestMethod$
|
|
2696
|
+
return this.http.request(RequestMethod$31.Delete, path, requestOptions);
|
|
2697
2697
|
}
|
|
2698
2698
|
/**
|
|
2699
2699
|
* Edit an account meter relationship
|
|
@@ -2754,7 +2754,7 @@ class AccountMeterService {
|
|
|
2754
2754
|
withCredentials: this.configuration.withCredentials,
|
|
2755
2755
|
observe: 'response'
|
|
2756
2756
|
};
|
|
2757
|
-
return this.http.request(RequestMethod$
|
|
2757
|
+
return this.http.request(RequestMethod$31.Put, path, requestOptions);
|
|
2758
2758
|
}
|
|
2759
2759
|
/**
|
|
2760
2760
|
* Edit all AccountRate relationships
|
|
@@ -2811,7 +2811,7 @@ class AccountMeterService {
|
|
|
2811
2811
|
withCredentials: this.configuration.withCredentials,
|
|
2812
2812
|
observe: 'response'
|
|
2813
2813
|
};
|
|
2814
|
-
return this.http.request(RequestMethod$
|
|
2814
|
+
return this.http.request(RequestMethod$31.Put, path, requestOptions);
|
|
2815
2815
|
}
|
|
2816
2816
|
/**
|
|
2817
2817
|
* Edit all FormTemplate relationships
|
|
@@ -2868,7 +2868,7 @@ class AccountMeterService {
|
|
|
2868
2868
|
withCredentials: this.configuration.withCredentials,
|
|
2869
2869
|
observe: 'response'
|
|
2870
2870
|
};
|
|
2871
|
-
return this.http.request(RequestMethod$
|
|
2871
|
+
return this.http.request(RequestMethod$31.Put, path, requestOptions);
|
|
2872
2872
|
}
|
|
2873
2873
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccountMeterService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2874
2874
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccountMeterService });
|
|
@@ -2896,7 +2896,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
2896
2896
|
* Do not edit the class manually.
|
|
2897
2897
|
*/
|
|
2898
2898
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
2899
|
-
const RequestMethod$
|
|
2899
|
+
const RequestMethod$30 = {
|
|
2900
2900
|
Get: 'get',
|
|
2901
2901
|
Post: 'post',
|
|
2902
2902
|
Put: 'put',
|
|
@@ -3059,7 +3059,7 @@ class AccrualService {
|
|
|
3059
3059
|
withCredentials: this.configuration.withCredentials,
|
|
3060
3060
|
observe: 'response'
|
|
3061
3061
|
};
|
|
3062
|
-
return this.http.request(RequestMethod$
|
|
3062
|
+
return this.http.request(RequestMethod$30.Post, path, requestOptions);
|
|
3063
3063
|
}
|
|
3064
3064
|
/**
|
|
3065
3065
|
* Get Accrual settings
|
|
@@ -3105,7 +3105,7 @@ class AccrualService {
|
|
|
3105
3105
|
withCredentials: this.configuration.withCredentials,
|
|
3106
3106
|
observe: 'response'
|
|
3107
3107
|
};
|
|
3108
|
-
return this.http.request(RequestMethod$
|
|
3108
|
+
return this.http.request(RequestMethod$30.Get, path, requestOptions);
|
|
3109
3109
|
}
|
|
3110
3110
|
/**
|
|
3111
3111
|
* Run the accrual processor engine using the supplied settings to generate accrual bills
|
|
@@ -3160,7 +3160,7 @@ class AccrualService {
|
|
|
3160
3160
|
withCredentials: this.configuration.withCredentials,
|
|
3161
3161
|
observe: 'response'
|
|
3162
3162
|
};
|
|
3163
|
-
return this.http.request(RequestMethod$
|
|
3163
|
+
return this.http.request(RequestMethod$30.Post, path, requestOptions);
|
|
3164
3164
|
}
|
|
3165
3165
|
/**
|
|
3166
3166
|
* Void all bills created by the Accrual task If any bills have already been exported they will still be voided
|
|
@@ -3210,7 +3210,7 @@ class AccrualService {
|
|
|
3210
3210
|
withCredentials: this.configuration.withCredentials,
|
|
3211
3211
|
observe: 'response'
|
|
3212
3212
|
};
|
|
3213
|
-
return this.http.request(RequestMethod$
|
|
3213
|
+
return this.http.request(RequestMethod$30.Post, path, requestOptions);
|
|
3214
3214
|
}
|
|
3215
3215
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccrualService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3216
3216
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AccrualService });
|
|
@@ -3238,7 +3238,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
3238
3238
|
* Do not edit the class manually.
|
|
3239
3239
|
*/
|
|
3240
3240
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
3241
|
-
const RequestMethod$
|
|
3241
|
+
const RequestMethod$2$ = {
|
|
3242
3242
|
Get: 'get',
|
|
3243
3243
|
Post: 'post',
|
|
3244
3244
|
Put: 'put',
|
|
@@ -3353,7 +3353,7 @@ class ActivityService {
|
|
|
3353
3353
|
withCredentials: this.configuration.withCredentials,
|
|
3354
3354
|
observe: 'response'
|
|
3355
3355
|
};
|
|
3356
|
-
return this.http.request(RequestMethod$
|
|
3356
|
+
return this.http.request(RequestMethod$2$.Get, path, requestOptions);
|
|
3357
3357
|
}
|
|
3358
3358
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ActivityService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3359
3359
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ActivityService });
|
|
@@ -3381,7 +3381,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
3381
3381
|
* Do not edit the class manually.
|
|
3382
3382
|
*/
|
|
3383
3383
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
3384
|
-
const RequestMethod$
|
|
3384
|
+
const RequestMethod$2_ = {
|
|
3385
3385
|
Get: 'get',
|
|
3386
3386
|
Post: 'post',
|
|
3387
3387
|
Put: 'put',
|
|
@@ -3682,7 +3682,7 @@ class AdminService {
|
|
|
3682
3682
|
withCredentials: this.configuration.withCredentials,
|
|
3683
3683
|
observe: 'response'
|
|
3684
3684
|
};
|
|
3685
|
-
return this.http.request(RequestMethod$
|
|
3685
|
+
return this.http.request(RequestMethod$2_.Put, path, requestOptions);
|
|
3686
3686
|
}
|
|
3687
3687
|
/**
|
|
3688
3688
|
* Edit the license details.
|
|
@@ -3733,7 +3733,7 @@ class AdminService {
|
|
|
3733
3733
|
withCredentials: this.configuration.withCredentials,
|
|
3734
3734
|
observe: 'response'
|
|
3735
3735
|
};
|
|
3736
|
-
return this.http.request(RequestMethod$
|
|
3736
|
+
return this.http.request(RequestMethod$2_.Put, path, requestOptions);
|
|
3737
3737
|
}
|
|
3738
3738
|
/**
|
|
3739
3739
|
* Edit system settings
|
|
@@ -3784,7 +3784,7 @@ class AdminService {
|
|
|
3784
3784
|
withCredentials: this.configuration.withCredentials,
|
|
3785
3785
|
observe: 'response'
|
|
3786
3786
|
};
|
|
3787
|
-
return this.http.request(RequestMethod$
|
|
3787
|
+
return this.http.request(RequestMethod$2_.Put, path, requestOptions);
|
|
3788
3788
|
}
|
|
3789
3789
|
/**
|
|
3790
3790
|
* Get the list of account periods
|
|
@@ -3830,7 +3830,7 @@ class AdminService {
|
|
|
3830
3830
|
withCredentials: this.configuration.withCredentials,
|
|
3831
3831
|
observe: 'response'
|
|
3832
3832
|
};
|
|
3833
|
-
return this.http.request(RequestMethod$
|
|
3833
|
+
return this.http.request(RequestMethod$2_.Get, path, requestOptions);
|
|
3834
3834
|
}
|
|
3835
3835
|
/**
|
|
3836
3836
|
* Get accounting settings
|
|
@@ -3876,7 +3876,7 @@ class AdminService {
|
|
|
3876
3876
|
withCredentials: this.configuration.withCredentials,
|
|
3877
3877
|
observe: 'response'
|
|
3878
3878
|
};
|
|
3879
|
-
return this.http.request(RequestMethod$
|
|
3879
|
+
return this.http.request(RequestMethod$2_.Get, path, requestOptions);
|
|
3880
3880
|
}
|
|
3881
3881
|
/**
|
|
3882
3882
|
* Get license details.
|
|
@@ -3922,7 +3922,7 @@ class AdminService {
|
|
|
3922
3922
|
withCredentials: this.configuration.withCredentials,
|
|
3923
3923
|
observe: 'response'
|
|
3924
3924
|
};
|
|
3925
|
-
return this.http.request(RequestMethod$
|
|
3925
|
+
return this.http.request(RequestMethod$2_.Get, path, requestOptions);
|
|
3926
3926
|
}
|
|
3927
3927
|
/**
|
|
3928
3928
|
* Retrieve the organization logo, if configured. Only URLs or JPEG, PNG, and SVG images are acceptable organization logos. If the saved base64 image is of a different file type, it will return an error.
|
|
@@ -3968,7 +3968,7 @@ class AdminService {
|
|
|
3968
3968
|
withCredentials: this.configuration.withCredentials,
|
|
3969
3969
|
observe: 'response'
|
|
3970
3970
|
};
|
|
3971
|
-
return this.http.request(RequestMethod$
|
|
3971
|
+
return this.http.request(RequestMethod$2_.Get, path, requestOptions);
|
|
3972
3972
|
}
|
|
3973
3973
|
/**
|
|
3974
3974
|
* Get the system reporting settings
|
|
@@ -4014,7 +4014,7 @@ class AdminService {
|
|
|
4014
4014
|
withCredentials: this.configuration.withCredentials,
|
|
4015
4015
|
observe: 'response'
|
|
4016
4016
|
};
|
|
4017
|
-
return this.http.request(RequestMethod$
|
|
4017
|
+
return this.http.request(RequestMethod$2_.Get, path, requestOptions);
|
|
4018
4018
|
}
|
|
4019
4019
|
/**
|
|
4020
4020
|
*
|
|
@@ -4060,7 +4060,7 @@ class AdminService {
|
|
|
4060
4060
|
withCredentials: this.configuration.withCredentials,
|
|
4061
4061
|
observe: 'response'
|
|
4062
4062
|
};
|
|
4063
|
-
return this.http.request(RequestMethod$
|
|
4063
|
+
return this.http.request(RequestMethod$2_.Get, path, requestOptions);
|
|
4064
4064
|
}
|
|
4065
4065
|
/**
|
|
4066
4066
|
* Get system settings
|
|
@@ -4106,7 +4106,7 @@ class AdminService {
|
|
|
4106
4106
|
withCredentials: this.configuration.withCredentials,
|
|
4107
4107
|
observe: 'response'
|
|
4108
4108
|
};
|
|
4109
|
-
return this.http.request(RequestMethod$
|
|
4109
|
+
return this.http.request(RequestMethod$2_.Get, path, requestOptions);
|
|
4110
4110
|
}
|
|
4111
4111
|
/**
|
|
4112
4112
|
* Fire a custom application action webhook
|
|
@@ -4158,7 +4158,7 @@ class AdminService {
|
|
|
4158
4158
|
withCredentials: this.configuration.withCredentials,
|
|
4159
4159
|
observe: 'response'
|
|
4160
4160
|
};
|
|
4161
|
-
return this.http.request(RequestMethod$
|
|
4161
|
+
return this.http.request(RequestMethod$2_.Put, path, requestOptions);
|
|
4162
4162
|
}
|
|
4163
4163
|
/**
|
|
4164
4164
|
* Set the system reporting settings
|
|
@@ -4209,7 +4209,7 @@ class AdminService {
|
|
|
4209
4209
|
withCredentials: this.configuration.withCredentials,
|
|
4210
4210
|
observe: 'response'
|
|
4211
4211
|
};
|
|
4212
|
-
return this.http.request(RequestMethod$
|
|
4212
|
+
return this.http.request(RequestMethod$2_.Put, path, requestOptions);
|
|
4213
4213
|
}
|
|
4214
4214
|
/**
|
|
4215
4215
|
*
|
|
@@ -4260,7 +4260,7 @@ class AdminService {
|
|
|
4260
4260
|
withCredentials: this.configuration.withCredentials,
|
|
4261
4261
|
observe: 'response'
|
|
4262
4262
|
};
|
|
4263
|
-
return this.http.request(RequestMethod$
|
|
4263
|
+
return this.http.request(RequestMethod$2_.Put, path, requestOptions);
|
|
4264
4264
|
}
|
|
4265
4265
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AdminService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4266
4266
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AdminService });
|
|
@@ -4288,7 +4288,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
4288
4288
|
* Do not edit the class manually.
|
|
4289
4289
|
*/
|
|
4290
4290
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
4291
|
-
const RequestMethod$
|
|
4291
|
+
const RequestMethod$2Z = {
|
|
4292
4292
|
Get: 'get',
|
|
4293
4293
|
Post: 'post',
|
|
4294
4294
|
Put: 'put',
|
|
@@ -4405,7 +4405,7 @@ class ApiService {
|
|
|
4405
4405
|
withCredentials: this.configuration.withCredentials,
|
|
4406
4406
|
observe: 'response'
|
|
4407
4407
|
};
|
|
4408
|
-
return this.http.request(RequestMethod$
|
|
4408
|
+
return this.http.request(RequestMethod$2Z.Get, path, requestOptions);
|
|
4409
4409
|
}
|
|
4410
4410
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4411
4411
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ApiService });
|
|
@@ -4433,7 +4433,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
4433
4433
|
* Do not edit the class manually.
|
|
4434
4434
|
*/
|
|
4435
4435
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
4436
|
-
const RequestMethod$
|
|
4436
|
+
const RequestMethod$2Y = {
|
|
4437
4437
|
Get: 'get',
|
|
4438
4438
|
Post: 'post',
|
|
4439
4439
|
Put: 'put',
|
|
@@ -4614,7 +4614,7 @@ class ApiKeyService {
|
|
|
4614
4614
|
withCredentials: this.configuration.withCredentials,
|
|
4615
4615
|
observe: 'response'
|
|
4616
4616
|
};
|
|
4617
|
-
return this.http.request(RequestMethod$
|
|
4617
|
+
return this.http.request(RequestMethod$2Y.Post, path, requestOptions);
|
|
4618
4618
|
}
|
|
4619
4619
|
/**
|
|
4620
4620
|
* Delete an API key
|
|
@@ -4664,7 +4664,7 @@ class ApiKeyService {
|
|
|
4664
4664
|
withCredentials: this.configuration.withCredentials,
|
|
4665
4665
|
observe: 'response'
|
|
4666
4666
|
};
|
|
4667
|
-
return this.http.request(RequestMethod$
|
|
4667
|
+
return this.http.request(RequestMethod$2Y.Delete, path, requestOptions);
|
|
4668
4668
|
}
|
|
4669
4669
|
/**
|
|
4670
4670
|
* Edit the name and description of an api key
|
|
@@ -4721,7 +4721,7 @@ class ApiKeyService {
|
|
|
4721
4721
|
withCredentials: this.configuration.withCredentials,
|
|
4722
4722
|
observe: 'response'
|
|
4723
4723
|
};
|
|
4724
|
-
return this.http.request(RequestMethod$
|
|
4724
|
+
return this.http.request(RequestMethod$2Y.Put, path, requestOptions);
|
|
4725
4725
|
}
|
|
4726
4726
|
/**
|
|
4727
4727
|
* Get an API key
|
|
@@ -4773,7 +4773,7 @@ class ApiKeyService {
|
|
|
4773
4773
|
withCredentials: this.configuration.withCredentials,
|
|
4774
4774
|
observe: 'response'
|
|
4775
4775
|
};
|
|
4776
|
-
return this.http.request(RequestMethod$
|
|
4776
|
+
return this.http.request(RequestMethod$2Y.Get, path, requestOptions);
|
|
4777
4777
|
}
|
|
4778
4778
|
/**
|
|
4779
4779
|
* Get a list of all available API keys
|
|
@@ -4823,7 +4823,7 @@ class ApiKeyService {
|
|
|
4823
4823
|
withCredentials: this.configuration.withCredentials,
|
|
4824
4824
|
observe: 'response'
|
|
4825
4825
|
};
|
|
4826
|
-
return this.http.request(RequestMethod$
|
|
4826
|
+
return this.http.request(RequestMethod$2Y.Get, path, requestOptions);
|
|
4827
4827
|
}
|
|
4828
4828
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ApiKeyService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4829
4829
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ApiKeyService });
|
|
@@ -4851,7 +4851,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
4851
4851
|
* Do not edit the class manually.
|
|
4852
4852
|
*/
|
|
4853
4853
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
4854
|
-
const RequestMethod$
|
|
4854
|
+
const RequestMethod$2X = {
|
|
4855
4855
|
Get: 'get',
|
|
4856
4856
|
Post: 'post',
|
|
4857
4857
|
Put: 'put',
|
|
@@ -5010,7 +5010,7 @@ class AuditService {
|
|
|
5010
5010
|
withCredentials: this.configuration.withCredentials,
|
|
5011
5011
|
observe: 'response'
|
|
5012
5012
|
};
|
|
5013
|
-
return this.http.request(RequestMethod$
|
|
5013
|
+
return this.http.request(RequestMethod$2X.Get, path, requestOptions);
|
|
5014
5014
|
}
|
|
5015
5015
|
/**
|
|
5016
5016
|
* Re-run audits on a set of bills Only a subset of audits are run. The audits that run are the ones that are affected by bill history Also the owner audit setting and any account level audit setting overrides will be applied Resolved flag issues and flags could get re-flagged because of this action If the audit setting is set to Flag and Hold, the bill will get Held from export
|
|
@@ -5059,7 +5059,7 @@ class AuditService {
|
|
|
5059
5059
|
withCredentials: this.configuration.withCredentials,
|
|
5060
5060
|
observe: 'response'
|
|
5061
5061
|
};
|
|
5062
|
-
return this.http.request(RequestMethod$
|
|
5062
|
+
return this.http.request(RequestMethod$2X.Post, path, requestOptions);
|
|
5063
5063
|
}
|
|
5064
5064
|
/**
|
|
5065
5065
|
* Re-run audits on a set of bills Only a subset of audits are run. The audits that run are the ones that are affected by bill history Also the owner audit setting and any account level audit setting overrides will be applied Resolved flag issues and flags could get re-flagged because of this action If the audit setting is set to Flag and Hold, the bill will get Held from export
|
|
@@ -5112,7 +5112,7 @@ class AuditService {
|
|
|
5112
5112
|
withCredentials: this.configuration.withCredentials,
|
|
5113
5113
|
observe: 'response'
|
|
5114
5114
|
};
|
|
5115
|
-
return this.http.request(RequestMethod$
|
|
5115
|
+
return this.http.request(RequestMethod$2X.Post, path, requestOptions);
|
|
5116
5116
|
}
|
|
5117
5117
|
/**
|
|
5118
5118
|
* Update audit settings
|
|
@@ -5163,7 +5163,7 @@ class AuditService {
|
|
|
5163
5163
|
withCredentials: this.configuration.withCredentials,
|
|
5164
5164
|
observe: 'response'
|
|
5165
5165
|
};
|
|
5166
|
-
return this.http.request(RequestMethod$
|
|
5166
|
+
return this.http.request(RequestMethod$2X.Put, path, requestOptions);
|
|
5167
5167
|
}
|
|
5168
5168
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AuditService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5169
5169
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AuditService });
|
|
@@ -5191,7 +5191,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
5191
5191
|
* Do not edit the class manually.
|
|
5192
5192
|
*/
|
|
5193
5193
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
5194
|
-
const RequestMethod$
|
|
5194
|
+
const RequestMethod$2W = {
|
|
5195
5195
|
Get: 'get',
|
|
5196
5196
|
Post: 'post',
|
|
5197
5197
|
Put: 'put',
|
|
@@ -5348,7 +5348,7 @@ class AuthenticationService {
|
|
|
5348
5348
|
withCredentials: this.configuration.withCredentials,
|
|
5349
5349
|
observe: 'response'
|
|
5350
5350
|
};
|
|
5351
|
-
return this.http.request(RequestMethod$
|
|
5351
|
+
return this.http.request(RequestMethod$2W.Post, path, requestOptions);
|
|
5352
5352
|
}
|
|
5353
5353
|
/**
|
|
5354
5354
|
* 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.
|
|
@@ -5398,7 +5398,7 @@ class AuthenticationService {
|
|
|
5398
5398
|
withCredentials: this.configuration.withCredentials,
|
|
5399
5399
|
observe: 'response'
|
|
5400
5400
|
};
|
|
5401
|
-
return this.http.request(RequestMethod$
|
|
5401
|
+
return this.http.request(RequestMethod$2W.Get, path, requestOptions);
|
|
5402
5402
|
}
|
|
5403
5403
|
/**
|
|
5404
5404
|
*
|
|
@@ -5449,7 +5449,7 @@ class AuthenticationService {
|
|
|
5449
5449
|
withCredentials: this.configuration.withCredentials,
|
|
5450
5450
|
observe: 'response'
|
|
5451
5451
|
};
|
|
5452
|
-
return this.http.request(RequestMethod$
|
|
5452
|
+
return this.http.request(RequestMethod$2W.Post, path, requestOptions);
|
|
5453
5453
|
}
|
|
5454
5454
|
/**
|
|
5455
5455
|
* Logout user- if they were logged in using a cookie
|
|
@@ -5493,7 +5493,7 @@ class AuthenticationService {
|
|
|
5493
5493
|
withCredentials: this.configuration.withCredentials,
|
|
5494
5494
|
observe: 'response'
|
|
5495
5495
|
};
|
|
5496
|
-
return this.http.request(RequestMethod$
|
|
5496
|
+
return this.http.request(RequestMethod$2W.Post, path, requestOptions);
|
|
5497
5497
|
}
|
|
5498
5498
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AuthenticationService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5499
5499
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AuthenticationService });
|
|
@@ -5521,7 +5521,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
5521
5521
|
* Do not edit the class manually.
|
|
5522
5522
|
*/
|
|
5523
5523
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
5524
|
-
const RequestMethod$
|
|
5524
|
+
const RequestMethod$2V = {
|
|
5525
5525
|
Get: 'get',
|
|
5526
5526
|
Post: 'post',
|
|
5527
5527
|
Put: 'put',
|
|
@@ -5771,7 +5771,7 @@ class BatchService {
|
|
|
5771
5771
|
withCredentials: this.configuration.withCredentials,
|
|
5772
5772
|
observe: 'response'
|
|
5773
5773
|
};
|
|
5774
|
-
return this.http.request(RequestMethod$
|
|
5774
|
+
return this.http.request(RequestMethod$2V.Put, path, requestOptions);
|
|
5775
5775
|
}
|
|
5776
5776
|
/**
|
|
5777
5777
|
*
|
|
@@ -5821,7 +5821,7 @@ class BatchService {
|
|
|
5821
5821
|
withCredentials: this.configuration.withCredentials,
|
|
5822
5822
|
observe: 'response'
|
|
5823
5823
|
};
|
|
5824
|
-
return this.http.request(RequestMethod$
|
|
5824
|
+
return this.http.request(RequestMethod$2V.Delete, path, requestOptions);
|
|
5825
5825
|
}
|
|
5826
5826
|
/**
|
|
5827
5827
|
* For each bill in the provided batch which has account-level charges, distribute these account charges amongst the meters on the bill. This is done proportionally by meter use or cost, depending on the split basis. Maximum of 10000 bills can be processed at one time.
|
|
@@ -5878,7 +5878,7 @@ class BatchService {
|
|
|
5878
5878
|
withCredentials: this.configuration.withCredentials,
|
|
5879
5879
|
observe: 'response'
|
|
5880
5880
|
};
|
|
5881
|
-
return this.http.request(RequestMethod$
|
|
5881
|
+
return this.http.request(RequestMethod$2V.Put, path, requestOptions);
|
|
5882
5882
|
}
|
|
5883
5883
|
/**
|
|
5884
5884
|
*
|
|
@@ -5935,7 +5935,7 @@ class BatchService {
|
|
|
5935
5935
|
withCredentials: this.configuration.withCredentials,
|
|
5936
5936
|
observe: 'response'
|
|
5937
5937
|
};
|
|
5938
|
-
return this.http.request(RequestMethod$
|
|
5938
|
+
return this.http.request(RequestMethod$2V.Put, path, requestOptions);
|
|
5939
5939
|
}
|
|
5940
5940
|
/**
|
|
5941
5941
|
*
|
|
@@ -5987,7 +5987,7 @@ class BatchService {
|
|
|
5987
5987
|
withCredentials: this.configuration.withCredentials,
|
|
5988
5988
|
observe: 'response'
|
|
5989
5989
|
};
|
|
5990
|
-
return this.http.request(RequestMethod$
|
|
5990
|
+
return this.http.request(RequestMethod$2V.Get, path, requestOptions);
|
|
5991
5991
|
}
|
|
5992
5992
|
/**
|
|
5993
5993
|
* Retrieves all move operation logs for a specific batch
|
|
@@ -6039,7 +6039,7 @@ class BatchService {
|
|
|
6039
6039
|
withCredentials: this.configuration.withCredentials,
|
|
6040
6040
|
observe: 'response'
|
|
6041
6041
|
};
|
|
6042
|
-
return this.http.request(RequestMethod$
|
|
6042
|
+
return this.http.request(RequestMethod$2V.Get, path, requestOptions);
|
|
6043
6043
|
}
|
|
6044
6044
|
/**
|
|
6045
6045
|
*
|
|
@@ -6097,7 +6097,7 @@ class BatchService {
|
|
|
6097
6097
|
withCredentials: this.configuration.withCredentials,
|
|
6098
6098
|
observe: 'response'
|
|
6099
6099
|
};
|
|
6100
|
-
return this.http.request(RequestMethod$
|
|
6100
|
+
return this.http.request(RequestMethod$2V.Get, path, requestOptions);
|
|
6101
6101
|
}
|
|
6102
6102
|
/**
|
|
6103
6103
|
* Opens a new batch. If there are other open batches for this user, and CloseExistingBatch is true, closes those batches before creating the new batch. Returns the batch response DTO.
|
|
@@ -6148,7 +6148,7 @@ class BatchService {
|
|
|
6148
6148
|
withCredentials: this.configuration.withCredentials,
|
|
6149
6149
|
observe: 'response'
|
|
6150
6150
|
};
|
|
6151
|
-
return this.http.request(RequestMethod$
|
|
6151
|
+
return this.http.request(RequestMethod$2V.Post, path, requestOptions);
|
|
6152
6152
|
}
|
|
6153
6153
|
/**
|
|
6154
6154
|
* Update the status of a batch. Requesting user must have BillAndBatches Create to update their own batch or to open another user's pending batch. User must have BillsAndBatches Manage to update another user's batch to closed or pending. If opening another user's batch, the requesting user's open batches (if any) will be set to Pending status if LeaveOpenBatchesAsIs is not set or is false. the requesting user's open batches (if any) will be left open if LeaveOpenBatchesAsIs is true. See 'Batch Statuses' section below for more information.
|
|
@@ -6203,7 +6203,7 @@ class BatchService {
|
|
|
6203
6203
|
withCredentials: this.configuration.withCredentials,
|
|
6204
6204
|
observe: 'response'
|
|
6205
6205
|
};
|
|
6206
|
-
return this.http.request(RequestMethod$
|
|
6206
|
+
return this.http.request(RequestMethod$2V.Put, path, requestOptions);
|
|
6207
6207
|
}
|
|
6208
6208
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BatchService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6209
6209
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BatchService });
|
|
@@ -6231,7 +6231,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
6231
6231
|
* Do not edit the class manually.
|
|
6232
6232
|
*/
|
|
6233
6233
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
6234
|
-
const RequestMethod$
|
|
6234
|
+
const RequestMethod$2U = {
|
|
6235
6235
|
Get: 'get',
|
|
6236
6236
|
Post: 'post',
|
|
6237
6237
|
Put: 'put',
|
|
@@ -7110,7 +7110,7 @@ class BillService {
|
|
|
7110
7110
|
withCredentials: this.configuration.withCredentials,
|
|
7111
7111
|
observe: 'response'
|
|
7112
7112
|
};
|
|
7113
|
-
return this.http.request(RequestMethod$
|
|
7113
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7114
7114
|
}
|
|
7115
7115
|
/**
|
|
7116
7116
|
* Delete given billIDs
|
|
@@ -7161,7 +7161,7 @@ class BillService {
|
|
|
7161
7161
|
withCredentials: this.configuration.withCredentials,
|
|
7162
7162
|
observe: 'response'
|
|
7163
7163
|
};
|
|
7164
|
-
return this.http.request(RequestMethod$
|
|
7164
|
+
return this.http.request(RequestMethod$2U.Post, path, requestOptions);
|
|
7165
7165
|
}
|
|
7166
7166
|
/**
|
|
7167
7167
|
* Update export hold flag for the given billIDs
|
|
@@ -7212,7 +7212,7 @@ class BillService {
|
|
|
7212
7212
|
withCredentials: this.configuration.withCredentials,
|
|
7213
7213
|
observe: 'response'
|
|
7214
7214
|
};
|
|
7215
|
-
return this.http.request(RequestMethod$
|
|
7215
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7216
7216
|
}
|
|
7217
7217
|
/**
|
|
7218
7218
|
* Run the bill split processor on the given list of bills. Optional note can be provided. Optional batch settings can be provided that will allow custom batchcode and bill headers for the destination bills
|
|
@@ -7263,7 +7263,7 @@ class BillService {
|
|
|
7263
7263
|
withCredentials: this.configuration.withCredentials,
|
|
7264
7264
|
observe: 'response'
|
|
7265
7265
|
};
|
|
7266
|
-
return this.http.request(RequestMethod$
|
|
7266
|
+
return this.http.request(RequestMethod$2U.Post, path, requestOptions);
|
|
7267
7267
|
}
|
|
7268
7268
|
/**
|
|
7269
7269
|
* Update all headers for a given list of bills If a new begin date or end date is being set, bills that would have end dates on or before their begin date will not be updated If the user does not have permission to edit exported or approved bills, those bills will not be updated Bill audits won't be fired
|
|
@@ -7314,7 +7314,7 @@ class BillService {
|
|
|
7314
7314
|
withCredentials: this.configuration.withCredentials,
|
|
7315
7315
|
observe: 'response'
|
|
7316
7316
|
};
|
|
7317
|
-
return this.http.request(RequestMethod$
|
|
7317
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7318
7318
|
}
|
|
7319
7319
|
/**
|
|
7320
7320
|
* Update void flag for the given billIDs
|
|
@@ -7365,7 +7365,7 @@ class BillService {
|
|
|
7365
7365
|
withCredentials: this.configuration.withCredentials,
|
|
7366
7366
|
observe: 'response'
|
|
7367
7367
|
};
|
|
7368
|
-
return this.http.request(RequestMethod$
|
|
7368
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7369
7369
|
}
|
|
7370
7370
|
/**
|
|
7371
7371
|
* For each record in the request body, update the bill payment details.
|
|
@@ -7416,7 +7416,7 @@ class BillService {
|
|
|
7416
7416
|
withCredentials: this.configuration.withCredentials,
|
|
7417
7417
|
observe: 'response'
|
|
7418
7418
|
};
|
|
7419
|
-
return this.http.request(RequestMethod$
|
|
7419
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7420
7420
|
}
|
|
7421
7421
|
/**
|
|
7422
7422
|
* For each bill in the import file, update the bill payment details.
|
|
@@ -7467,7 +7467,7 @@ class BillService {
|
|
|
7467
7467
|
withCredentials: this.configuration.withCredentials,
|
|
7468
7468
|
observe: 'response'
|
|
7469
7469
|
};
|
|
7470
|
-
return this.http.request(RequestMethod$
|
|
7470
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7471
7471
|
}
|
|
7472
7472
|
/**
|
|
7473
7473
|
* Cleans a single bill. The dirty flag of the bill is not taken into account.
|
|
@@ -7517,7 +7517,7 @@ class BillService {
|
|
|
7517
7517
|
withCredentials: this.configuration.withCredentials,
|
|
7518
7518
|
observe: 'response'
|
|
7519
7519
|
};
|
|
7520
|
-
return this.http.request(RequestMethod$
|
|
7520
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7521
7521
|
}
|
|
7522
7522
|
/**
|
|
7523
7523
|
* Cleans all dirty bills, and any bills created outside of version 7.
|
|
@@ -7561,7 +7561,7 @@ class BillService {
|
|
|
7561
7561
|
withCredentials: this.configuration.withCredentials,
|
|
7562
7562
|
observe: 'response'
|
|
7563
7563
|
};
|
|
7564
|
-
return this.http.request(RequestMethod$
|
|
7564
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7565
7565
|
}
|
|
7566
7566
|
/**
|
|
7567
7567
|
* Create a new bill
|
|
@@ -7620,7 +7620,7 @@ class BillService {
|
|
|
7620
7620
|
withCredentials: this.configuration.withCredentials,
|
|
7621
7621
|
observe: 'response'
|
|
7622
7622
|
};
|
|
7623
|
-
return this.http.request(RequestMethod$
|
|
7623
|
+
return this.http.request(RequestMethod$2U.Post, path, requestOptions);
|
|
7624
7624
|
}
|
|
7625
7625
|
/**
|
|
7626
7626
|
* Persist an payment event for several bills
|
|
@@ -7671,7 +7671,7 @@ class BillService {
|
|
|
7671
7671
|
withCredentials: this.configuration.withCredentials,
|
|
7672
7672
|
observe: 'response'
|
|
7673
7673
|
};
|
|
7674
|
-
return this.http.request(RequestMethod$
|
|
7674
|
+
return this.http.request(RequestMethod$2U.Post, path, requestOptions);
|
|
7675
7675
|
}
|
|
7676
7676
|
/**
|
|
7677
7677
|
* For each bill in the request body which has account-level charges, distribute these account charges amongst the meters on the bill. This is done proportionally by meter use or cost, depending on the split basis. Maximum of 10000 bills can be processed at one time.
|
|
@@ -7722,7 +7722,7 @@ class BillService {
|
|
|
7722
7722
|
withCredentials: this.configuration.withCredentials,
|
|
7723
7723
|
observe: 'response'
|
|
7724
7724
|
};
|
|
7725
|
-
return this.http.request(RequestMethod$
|
|
7725
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7726
7726
|
}
|
|
7727
7727
|
/**
|
|
7728
7728
|
* Download file for a bill custom field
|
|
@@ -7778,7 +7778,7 @@ class BillService {
|
|
|
7778
7778
|
withCredentials: this.configuration.withCredentials,
|
|
7779
7779
|
observe: 'response'
|
|
7780
7780
|
};
|
|
7781
|
-
return this.http.request(RequestMethod$
|
|
7781
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
7782
7782
|
}
|
|
7783
7783
|
/**
|
|
7784
7784
|
* Edit the custom field values on a bill
|
|
@@ -7835,7 +7835,7 @@ class BillService {
|
|
|
7835
7835
|
withCredentials: this.configuration.withCredentials,
|
|
7836
7836
|
observe: 'response'
|
|
7837
7837
|
};
|
|
7838
|
-
return this.http.request(RequestMethod$
|
|
7838
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7839
7839
|
}
|
|
7840
7840
|
/**
|
|
7841
7841
|
* Edit an existing bill
|
|
@@ -7892,7 +7892,7 @@ class BillService {
|
|
|
7892
7892
|
withCredentials: this.configuration.withCredentials,
|
|
7893
7893
|
observe: 'response'
|
|
7894
7894
|
};
|
|
7895
|
-
return this.http.request(RequestMethod$
|
|
7895
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7896
7896
|
}
|
|
7897
7897
|
/**
|
|
7898
7898
|
* Retrieves the text of a standard EnergyCAP bill export ini file for AP, GL and Payment purposes. Payment details will be included in the profile if workflow settings for the bill export are configured to include payment details.
|
|
@@ -7940,7 +7940,7 @@ class BillService {
|
|
|
7940
7940
|
withCredentials: this.configuration.withCredentials,
|
|
7941
7941
|
observe: 'response'
|
|
7942
7942
|
};
|
|
7943
|
-
return this.http.request(RequestMethod$
|
|
7943
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
7944
7944
|
}
|
|
7945
7945
|
/**
|
|
7946
7946
|
* Retrieves text of a standard EnergyCAP bill export file for AP, GL and payment purposes. Maximum of 10000 bills can be processed at one time. Only bills with the following conditions are included in the export file: 1) approved bills (if the approval system is enabled in workflow settings) 2) bill is in a closed batch (if after batch or after batch approval is set in the workflow settings) 3) bill is not held for export 4) bill is not void 5) bill is within the user's topmost setting. 6) bill in not already exported
|
|
@@ -7989,7 +7989,7 @@ class BillService {
|
|
|
7989
7989
|
withCredentials: this.configuration.withCredentials,
|
|
7990
7990
|
observe: 'response'
|
|
7991
7991
|
};
|
|
7992
|
-
return this.http.request(RequestMethod$
|
|
7992
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
7993
7993
|
}
|
|
7994
7994
|
/**
|
|
7995
7995
|
* Retrieves a JSON array of bill details.
|
|
@@ -8040,7 +8040,7 @@ class BillService {
|
|
|
8040
8040
|
withCredentials: this.configuration.withCredentials,
|
|
8041
8041
|
observe: 'response'
|
|
8042
8042
|
};
|
|
8043
|
-
return this.http.request(RequestMethod$
|
|
8043
|
+
return this.http.request(RequestMethod$2U.Post, path, requestOptions);
|
|
8044
8044
|
}
|
|
8045
8045
|
/**
|
|
8046
8046
|
* Retrieves bill history for an account
|
|
@@ -8108,7 +8108,7 @@ class BillService {
|
|
|
8108
8108
|
withCredentials: this.configuration.withCredentials,
|
|
8109
8109
|
observe: 'response'
|
|
8110
8110
|
};
|
|
8111
|
-
return this.http.request(RequestMethod$
|
|
8111
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8112
8112
|
}
|
|
8113
8113
|
/**
|
|
8114
8114
|
* Retrieves all bill's bodylines
|
|
@@ -8166,7 +8166,7 @@ class BillService {
|
|
|
8166
8166
|
withCredentials: this.configuration.withCredentials,
|
|
8167
8167
|
observe: 'response'
|
|
8168
8168
|
};
|
|
8169
|
-
return this.http.request(RequestMethod$
|
|
8169
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8170
8170
|
}
|
|
8171
8171
|
/**
|
|
8172
8172
|
* Retrieves one bill
|
|
@@ -8218,7 +8218,7 @@ class BillService {
|
|
|
8218
8218
|
withCredentials: this.configuration.withCredentials,
|
|
8219
8219
|
observe: 'response'
|
|
8220
8220
|
};
|
|
8221
|
-
return this.http.request(RequestMethod$
|
|
8221
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8222
8222
|
}
|
|
8223
8223
|
/**
|
|
8224
8224
|
* Retrieves bill account meter record for a specific billId
|
|
@@ -8270,7 +8270,7 @@ class BillService {
|
|
|
8270
8270
|
withCredentials: this.configuration.withCredentials,
|
|
8271
8271
|
observe: 'response'
|
|
8272
8272
|
};
|
|
8273
|
-
return this.http.request(RequestMethod$
|
|
8273
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8274
8274
|
}
|
|
8275
8275
|
/**
|
|
8276
8276
|
* Retrieves bill account meter calendarized record for a specific billId
|
|
@@ -8322,7 +8322,7 @@ class BillService {
|
|
|
8322
8322
|
withCredentials: this.configuration.withCredentials,
|
|
8323
8323
|
observe: 'response'
|
|
8324
8324
|
};
|
|
8325
|
-
return this.http.request(RequestMethod$
|
|
8325
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8326
8326
|
}
|
|
8327
8327
|
/**
|
|
8328
8328
|
* Retrieves bill account meter normalized record for a specific billId
|
|
@@ -8374,7 +8374,7 @@ class BillService {
|
|
|
8374
8374
|
withCredentials: this.configuration.withCredentials,
|
|
8375
8375
|
observe: 'response'
|
|
8376
8376
|
};
|
|
8377
|
-
return this.http.request(RequestMethod$
|
|
8377
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8378
8378
|
}
|
|
8379
8379
|
/**
|
|
8380
8380
|
* Retrieves bill account meter statistics record for a specific billId
|
|
@@ -8426,7 +8426,7 @@ class BillService {
|
|
|
8426
8426
|
withCredentials: this.configuration.withCredentials,
|
|
8427
8427
|
observe: 'response'
|
|
8428
8428
|
};
|
|
8429
|
-
return this.http.request(RequestMethod$
|
|
8429
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8430
8430
|
}
|
|
8431
8431
|
/**
|
|
8432
8432
|
* Retrieves bill account meter records
|
|
@@ -8484,7 +8484,7 @@ class BillService {
|
|
|
8484
8484
|
withCredentials: this.configuration.withCredentials,
|
|
8485
8485
|
observe: 'response'
|
|
8486
8486
|
};
|
|
8487
|
-
return this.http.request(RequestMethod$
|
|
8487
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8488
8488
|
}
|
|
8489
8489
|
/**
|
|
8490
8490
|
* Retrieves bill account meter calendarized records
|
|
@@ -8542,7 +8542,7 @@ class BillService {
|
|
|
8542
8542
|
withCredentials: this.configuration.withCredentials,
|
|
8543
8543
|
observe: 'response'
|
|
8544
8544
|
};
|
|
8545
|
-
return this.http.request(RequestMethod$
|
|
8545
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8546
8546
|
}
|
|
8547
8547
|
/**
|
|
8548
8548
|
* Retrieves bill account meter normalized records
|
|
@@ -8600,7 +8600,7 @@ class BillService {
|
|
|
8600
8600
|
withCredentials: this.configuration.withCredentials,
|
|
8601
8601
|
observe: 'response'
|
|
8602
8602
|
};
|
|
8603
|
-
return this.http.request(RequestMethod$
|
|
8603
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8604
8604
|
}
|
|
8605
8605
|
/**
|
|
8606
8606
|
* Retrieves bill account meter statistics records
|
|
@@ -8658,7 +8658,7 @@ class BillService {
|
|
|
8658
8658
|
withCredentials: this.configuration.withCredentials,
|
|
8659
8659
|
observe: 'response'
|
|
8660
8660
|
};
|
|
8661
|
-
return this.http.request(RequestMethod$
|
|
8661
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8662
8662
|
}
|
|
8663
8663
|
/**
|
|
8664
8664
|
* Retrieves one bill's bodylines
|
|
@@ -8710,7 +8710,7 @@ class BillService {
|
|
|
8710
8710
|
withCredentials: this.configuration.withCredentials,
|
|
8711
8711
|
observe: 'response'
|
|
8712
8712
|
};
|
|
8713
|
-
return this.http.request(RequestMethod$
|
|
8713
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8714
8714
|
}
|
|
8715
8715
|
/**
|
|
8716
8716
|
* Get custom field values for a bill
|
|
@@ -8762,7 +8762,7 @@ class BillService {
|
|
|
8762
8762
|
withCredentials: this.configuration.withCredentials,
|
|
8763
8763
|
observe: 'response'
|
|
8764
8764
|
};
|
|
8765
|
-
return this.http.request(RequestMethod$
|
|
8765
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8766
8766
|
}
|
|
8767
8767
|
/**
|
|
8768
8768
|
* Retrieves all data necessary to load the bill entry screen
|
|
@@ -8822,7 +8822,7 @@ class BillService {
|
|
|
8822
8822
|
withCredentials: this.configuration.withCredentials,
|
|
8823
8823
|
observe: 'response'
|
|
8824
8824
|
};
|
|
8825
|
-
return this.http.request(RequestMethod$
|
|
8825
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8826
8826
|
}
|
|
8827
8827
|
/**
|
|
8828
8828
|
* Retrieves all data necessary to load the bill entry screen
|
|
@@ -8874,7 +8874,7 @@ class BillService {
|
|
|
8874
8874
|
withCredentials: this.configuration.withCredentials,
|
|
8875
8875
|
observe: 'response'
|
|
8876
8876
|
};
|
|
8877
|
-
return this.http.request(RequestMethod$
|
|
8877
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8878
8878
|
}
|
|
8879
8879
|
/**
|
|
8880
8880
|
* Retrieves bill history from starting at the billId billing period
|
|
@@ -8938,7 +8938,7 @@ class BillService {
|
|
|
8938
8938
|
withCredentials: this.configuration.withCredentials,
|
|
8939
8939
|
observe: 'response'
|
|
8940
8940
|
};
|
|
8941
|
-
return this.http.request(RequestMethod$
|
|
8941
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8942
8942
|
}
|
|
8943
8943
|
/**
|
|
8944
8944
|
* Retrieves a list of bill line type mappings
|
|
@@ -8984,7 +8984,7 @@ class BillService {
|
|
|
8984
8984
|
withCredentials: this.configuration.withCredentials,
|
|
8985
8985
|
observe: 'response'
|
|
8986
8986
|
};
|
|
8987
|
-
return this.http.request(RequestMethod$
|
|
8987
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
8988
8988
|
}
|
|
8989
8989
|
/**
|
|
8990
8990
|
* Retrieves the payment events for a bill
|
|
@@ -9036,7 +9036,7 @@ class BillService {
|
|
|
9036
9036
|
withCredentials: this.configuration.withCredentials,
|
|
9037
9037
|
observe: 'response'
|
|
9038
9038
|
};
|
|
9039
|
-
return this.http.request(RequestMethod$
|
|
9039
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
9040
9040
|
}
|
|
9041
9041
|
/**
|
|
9042
9042
|
* Retrieves an array of bills. The array of bills can be filtered by a number of criteria. See the filter property for more details
|
|
@@ -9094,7 +9094,7 @@ class BillService {
|
|
|
9094
9094
|
withCredentials: this.configuration.withCredentials,
|
|
9095
9095
|
observe: 'response'
|
|
9096
9096
|
};
|
|
9097
|
-
return this.http.request(RequestMethod$
|
|
9097
|
+
return this.http.request(RequestMethod$2U.Get, path, requestOptions);
|
|
9098
9098
|
}
|
|
9099
9099
|
/**
|
|
9100
9100
|
* Retrieves a list of accounts that contain meters of ALL of the commodities represented by the given Bills
|
|
@@ -9145,7 +9145,7 @@ class BillService {
|
|
|
9145
9145
|
withCredentials: this.configuration.withCredentials,
|
|
9146
9146
|
observe: 'response'
|
|
9147
9147
|
};
|
|
9148
|
-
return this.http.request(RequestMethod$
|
|
9148
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9149
9149
|
}
|
|
9150
9150
|
/**
|
|
9151
9151
|
* Moves the set of bills to the specified batch The bills being moved could be in an open, pending or closed batch The specified batch should be an open or pending batch All the bills being moved should be in the same batch Moving from a pending to an open will cause the bills to get un-voided Moving from an open/closed to a pending will cause the bills to get voided If bills were in a closed batch, and downstream processes had already run, those processes will not get reversed
|
|
@@ -9202,7 +9202,7 @@ class BillService {
|
|
|
9202
9202
|
withCredentials: this.configuration.withCredentials,
|
|
9203
9203
|
observe: 'response'
|
|
9204
9204
|
};
|
|
9205
|
-
return this.http.request(RequestMethod$
|
|
9205
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9206
9206
|
}
|
|
9207
9207
|
/**
|
|
9208
9208
|
* Moves the list of given bills to the specified destination account and meters. Each source Meter will be matched with a corresponding destination Meter based on commodity.
|
|
@@ -9251,7 +9251,7 @@ class BillService {
|
|
|
9251
9251
|
withCredentials: this.configuration.withCredentials,
|
|
9252
9252
|
observe: 'response'
|
|
9253
9253
|
};
|
|
9254
|
-
return this.http.request(RequestMethod$
|
|
9254
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9255
9255
|
}
|
|
9256
9256
|
/**
|
|
9257
9257
|
* Fires a custom bill action. Custom bill actions are setup as webhooks
|
|
@@ -9302,7 +9302,7 @@ class BillService {
|
|
|
9302
9302
|
withCredentials: this.configuration.withCredentials,
|
|
9303
9303
|
observe: 'response'
|
|
9304
9304
|
};
|
|
9305
|
-
return this.http.request(RequestMethod$
|
|
9305
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9306
9306
|
}
|
|
9307
9307
|
/**
|
|
9308
9308
|
* Creates reversal bills for the given bill ids considering multiple open batch options.
|
|
@@ -9353,7 +9353,7 @@ class BillService {
|
|
|
9353
9353
|
withCredentials: this.configuration.withCredentials,
|
|
9354
9354
|
observe: 'response'
|
|
9355
9355
|
};
|
|
9356
|
-
return this.http.request(RequestMethod$
|
|
9356
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9357
9357
|
}
|
|
9358
9358
|
/**
|
|
9359
9359
|
* Excludes or undoes exclusion of bills from accruals
|
|
@@ -9404,7 +9404,7 @@ class BillService {
|
|
|
9404
9404
|
withCredentials: this.configuration.withCredentials,
|
|
9405
9405
|
observe: 'response'
|
|
9406
9406
|
};
|
|
9407
|
-
return this.http.request(RequestMethod$
|
|
9407
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9408
9408
|
}
|
|
9409
9409
|
/**
|
|
9410
9410
|
* Marks one or more bills as unexported.
|
|
@@ -9455,7 +9455,7 @@ class BillService {
|
|
|
9455
9455
|
withCredentials: this.configuration.withCredentials,
|
|
9456
9456
|
observe: 'response'
|
|
9457
9457
|
};
|
|
9458
|
-
return this.http.request(RequestMethod$
|
|
9458
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9459
9459
|
}
|
|
9460
9460
|
/**
|
|
9461
9461
|
* Marks one or more bills as unexported. The bills to be unexported are selected based on the guid passed in. The guid is generated when bills are exported via the bill export end point, and the guid is returned in the header of the response in a field named Ec-Guid.
|
|
@@ -9507,7 +9507,7 @@ class BillService {
|
|
|
9507
9507
|
withCredentials: this.configuration.withCredentials,
|
|
9508
9508
|
observe: 'response'
|
|
9509
9509
|
};
|
|
9510
|
-
return this.http.request(RequestMethod$
|
|
9510
|
+
return this.http.request(RequestMethod$2U.Put, path, requestOptions);
|
|
9511
9511
|
}
|
|
9512
9512
|
/**
|
|
9513
9513
|
* Upload a file representing a bill image. The bill image file extension must match the settings in system data 'webbillimageext'.
|
|
@@ -9569,7 +9569,7 @@ class BillService {
|
|
|
9569
9569
|
withCredentials: this.configuration.withCredentials,
|
|
9570
9570
|
observe: 'response'
|
|
9571
9571
|
};
|
|
9572
|
-
return this.http.request(RequestMethod$
|
|
9572
|
+
return this.http.request(RequestMethod$2U.Post, path, requestOptions);
|
|
9573
9573
|
}
|
|
9574
9574
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9575
9575
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillService });
|
|
@@ -9597,7 +9597,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
9597
9597
|
* Do not edit the class manually.
|
|
9598
9598
|
*/
|
|
9599
9599
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
9600
|
-
const RequestMethod$
|
|
9600
|
+
const RequestMethod$2T = {
|
|
9601
9601
|
Get: 'get',
|
|
9602
9602
|
Post: 'post',
|
|
9603
9603
|
Put: 'put',
|
|
@@ -9843,7 +9843,7 @@ class BillAccountChargeSplitService {
|
|
|
9843
9843
|
withCredentials: this.configuration.withCredentials,
|
|
9844
9844
|
observe: 'response'
|
|
9845
9845
|
};
|
|
9846
|
-
return this.http.request(RequestMethod$
|
|
9846
|
+
return this.http.request(RequestMethod$2T.Delete, path, requestOptions);
|
|
9847
9847
|
}
|
|
9848
9848
|
/**
|
|
9849
9849
|
* Deletes a specific vendor's setting to split account charges on bill import
|
|
@@ -9893,7 +9893,7 @@ class BillAccountChargeSplitService {
|
|
|
9893
9893
|
withCredentials: this.configuration.withCredentials,
|
|
9894
9894
|
observe: 'response'
|
|
9895
9895
|
};
|
|
9896
|
-
return this.http.request(RequestMethod$
|
|
9896
|
+
return this.http.request(RequestMethod$2T.Delete, path, requestOptions);
|
|
9897
9897
|
}
|
|
9898
9898
|
/**
|
|
9899
9899
|
* Edits a specific account's setting to split account charges on bill import If a rule does not currently exist for this account it is created otherwise it is updated
|
|
@@ -9950,7 +9950,7 @@ class BillAccountChargeSplitService {
|
|
|
9950
9950
|
withCredentials: this.configuration.withCredentials,
|
|
9951
9951
|
observe: 'response'
|
|
9952
9952
|
};
|
|
9953
|
-
return this.http.request(RequestMethod$
|
|
9953
|
+
return this.http.request(RequestMethod$2T.Put, path, requestOptions);
|
|
9954
9954
|
}
|
|
9955
9955
|
/**
|
|
9956
9956
|
* Edit the method used to split account charges on bill import
|
|
@@ -10001,7 +10001,7 @@ class BillAccountChargeSplitService {
|
|
|
10001
10001
|
withCredentials: this.configuration.withCredentials,
|
|
10002
10002
|
observe: 'response'
|
|
10003
10003
|
};
|
|
10004
|
-
return this.http.request(RequestMethod$
|
|
10004
|
+
return this.http.request(RequestMethod$2T.Put, path, requestOptions);
|
|
10005
10005
|
}
|
|
10006
10006
|
/**
|
|
10007
10007
|
* Edits a specific vendor's setting to split account charges on bill import If a rule does not currently exist for this vendor it is created otherwise it is updated
|
|
@@ -10058,7 +10058,7 @@ class BillAccountChargeSplitService {
|
|
|
10058
10058
|
withCredentials: this.configuration.withCredentials,
|
|
10059
10059
|
observe: 'response'
|
|
10060
10060
|
};
|
|
10061
|
-
return this.http.request(RequestMethod$
|
|
10061
|
+
return this.http.request(RequestMethod$2T.Put, path, requestOptions);
|
|
10062
10062
|
}
|
|
10063
10063
|
/**
|
|
10064
10064
|
* Retrieves a specific account's settings to split account charges on bill import
|
|
@@ -10110,7 +10110,7 @@ class BillAccountChargeSplitService {
|
|
|
10110
10110
|
withCredentials: this.configuration.withCredentials,
|
|
10111
10111
|
observe: 'response'
|
|
10112
10112
|
};
|
|
10113
|
-
return this.http.request(RequestMethod$
|
|
10113
|
+
return this.http.request(RequestMethod$2T.Get, path, requestOptions);
|
|
10114
10114
|
}
|
|
10115
10115
|
/**
|
|
10116
10116
|
* Retrieves the method used to split account charges on bill import
|
|
@@ -10156,7 +10156,7 @@ class BillAccountChargeSplitService {
|
|
|
10156
10156
|
withCredentials: this.configuration.withCredentials,
|
|
10157
10157
|
observe: 'response'
|
|
10158
10158
|
};
|
|
10159
|
-
return this.http.request(RequestMethod$
|
|
10159
|
+
return this.http.request(RequestMethod$2T.Get, path, requestOptions);
|
|
10160
10160
|
}
|
|
10161
10161
|
/**
|
|
10162
10162
|
* Retrieves all settings used to split account charges on bill import Note: When filtering by vendor, only settings that apply to all vendor accounts (account null) will be returned
|
|
@@ -10214,7 +10214,7 @@ class BillAccountChargeSplitService {
|
|
|
10214
10214
|
withCredentials: this.configuration.withCredentials,
|
|
10215
10215
|
observe: 'response'
|
|
10216
10216
|
};
|
|
10217
|
-
return this.http.request(RequestMethod$
|
|
10217
|
+
return this.http.request(RequestMethod$2T.Get, path, requestOptions);
|
|
10218
10218
|
}
|
|
10219
10219
|
/**
|
|
10220
10220
|
* Retrieves a specific vendor's settings to split account charges on bill import
|
|
@@ -10266,7 +10266,7 @@ class BillAccountChargeSplitService {
|
|
|
10266
10266
|
withCredentials: this.configuration.withCredentials,
|
|
10267
10267
|
observe: 'response'
|
|
10268
10268
|
};
|
|
10269
|
-
return this.http.request(RequestMethod$
|
|
10269
|
+
return this.http.request(RequestMethod$2T.Get, path, requestOptions);
|
|
10270
10270
|
}
|
|
10271
10271
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillAccountChargeSplitService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10272
10272
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillAccountChargeSplitService });
|
|
@@ -10294,7 +10294,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
10294
10294
|
* Do not edit the class manually.
|
|
10295
10295
|
*/
|
|
10296
10296
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
10297
|
-
const RequestMethod$
|
|
10297
|
+
const RequestMethod$2S = {
|
|
10298
10298
|
Get: 'get',
|
|
10299
10299
|
Post: 'post',
|
|
10300
10300
|
Put: 'put',
|
|
@@ -10545,7 +10545,7 @@ class BillImportRuleService {
|
|
|
10545
10545
|
withCredentials: this.configuration.withCredentials,
|
|
10546
10546
|
observe: 'response'
|
|
10547
10547
|
};
|
|
10548
|
-
return this.http.request(RequestMethod$
|
|
10548
|
+
return this.http.request(RequestMethod$2S.Post, path, requestOptions);
|
|
10549
10549
|
}
|
|
10550
10550
|
/**
|
|
10551
10551
|
* Delete a bill import rule. History is preserved via temporal table.
|
|
@@ -10595,7 +10595,7 @@ class BillImportRuleService {
|
|
|
10595
10595
|
withCredentials: this.configuration.withCredentials,
|
|
10596
10596
|
observe: 'response'
|
|
10597
10597
|
};
|
|
10598
|
-
return this.http.request(RequestMethod$
|
|
10598
|
+
return this.http.request(RequestMethod$2S.Delete, path, requestOptions);
|
|
10599
10599
|
}
|
|
10600
10600
|
/**
|
|
10601
10601
|
* Edit an existing bill import rule
|
|
@@ -10652,7 +10652,7 @@ class BillImportRuleService {
|
|
|
10652
10652
|
withCredentials: this.configuration.withCredentials,
|
|
10653
10653
|
observe: 'response'
|
|
10654
10654
|
};
|
|
10655
|
-
return this.http.request(RequestMethod$
|
|
10655
|
+
return this.http.request(RequestMethod$2S.Put, path, requestOptions);
|
|
10656
10656
|
}
|
|
10657
10657
|
/**
|
|
10658
10658
|
* Get a single bill import rule by ID
|
|
@@ -10704,7 +10704,7 @@ class BillImportRuleService {
|
|
|
10704
10704
|
withCredentials: this.configuration.withCredentials,
|
|
10705
10705
|
observe: 'response'
|
|
10706
10706
|
};
|
|
10707
|
-
return this.http.request(RequestMethod$
|
|
10707
|
+
return this.http.request(RequestMethod$2S.Get, path, requestOptions);
|
|
10708
10708
|
}
|
|
10709
10709
|
/**
|
|
10710
10710
|
* Get bill import rules. Supports filtering by vendor name, account name, and rule definition.
|
|
@@ -10766,7 +10766,7 @@ class BillImportRuleService {
|
|
|
10766
10766
|
withCredentials: this.configuration.withCredentials,
|
|
10767
10767
|
observe: 'response'
|
|
10768
10768
|
};
|
|
10769
|
-
return this.http.request(RequestMethod$
|
|
10769
|
+
return this.http.request(RequestMethod$2S.Get, path, requestOptions);
|
|
10770
10770
|
}
|
|
10771
10771
|
/**
|
|
10772
10772
|
* Test an existing import rule against an existing EUM bill. Useful for seeing the output of an existing rule against an existing bill.
|
|
@@ -10824,7 +10824,7 @@ class BillImportRuleService {
|
|
|
10824
10824
|
withCredentials: this.configuration.withCredentials,
|
|
10825
10825
|
observe: 'response'
|
|
10826
10826
|
};
|
|
10827
|
-
return this.http.request(RequestMethod$
|
|
10827
|
+
return this.http.request(RequestMethod$2S.Post, path, requestOptions);
|
|
10828
10828
|
}
|
|
10829
10829
|
/**
|
|
10830
10830
|
* Test an existing import rule against a given bill object. Useful for testing an existing rule against a bill that does not exist in EUM yet.
|
|
@@ -10881,7 +10881,7 @@ class BillImportRuleService {
|
|
|
10881
10881
|
withCredentials: this.configuration.withCredentials,
|
|
10882
10882
|
observe: 'response'
|
|
10883
10883
|
};
|
|
10884
|
-
return this.http.request(RequestMethod$
|
|
10884
|
+
return this.http.request(RequestMethod$2S.Post, path, requestOptions);
|
|
10885
10885
|
}
|
|
10886
10886
|
/**
|
|
10887
10887
|
* Test a given import rule definition against an existing EUM bill. Useful when the rule does not exist in EUM yet or for testing edits before committing them.
|
|
@@ -10938,7 +10938,7 @@ class BillImportRuleService {
|
|
|
10938
10938
|
withCredentials: this.configuration.withCredentials,
|
|
10939
10939
|
observe: 'response'
|
|
10940
10940
|
};
|
|
10941
|
-
return this.http.request(RequestMethod$
|
|
10941
|
+
return this.http.request(RequestMethod$2S.Post, path, requestOptions);
|
|
10942
10942
|
}
|
|
10943
10943
|
/**
|
|
10944
10944
|
* Test a given import rule definition against a given bill object. Useful when neither the rule or the bill exist in EUM yet.
|
|
@@ -10989,7 +10989,7 @@ class BillImportRuleService {
|
|
|
10989
10989
|
withCredentials: this.configuration.withCredentials,
|
|
10990
10990
|
observe: 'response'
|
|
10991
10991
|
};
|
|
10992
|
-
return this.http.request(RequestMethod$
|
|
10992
|
+
return this.http.request(RequestMethod$2S.Post, path, requestOptions);
|
|
10993
10993
|
}
|
|
10994
10994
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillImportRuleService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10995
10995
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillImportRuleService });
|
|
@@ -11017,7 +11017,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
11017
11017
|
* Do not edit the class manually.
|
|
11018
11018
|
*/
|
|
11019
11019
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
11020
|
-
const RequestMethod$
|
|
11020
|
+
const RequestMethod$2R = {
|
|
11021
11021
|
Get: 'get',
|
|
11022
11022
|
Post: 'post',
|
|
11023
11023
|
Put: 'put',
|
|
@@ -11274,7 +11274,7 @@ class BillSplitService {
|
|
|
11274
11274
|
withCredentials: this.configuration.withCredentials,
|
|
11275
11275
|
observe: 'response'
|
|
11276
11276
|
};
|
|
11277
|
-
return this.http.request(RequestMethod$
|
|
11277
|
+
return this.http.request(RequestMethod$2R.Get, path, requestOptions);
|
|
11278
11278
|
}
|
|
11279
11279
|
/**
|
|
11280
11280
|
* Get all chargeback tasks with details for a specific version on an account and meter
|
|
@@ -11338,7 +11338,7 @@ class BillSplitService {
|
|
|
11338
11338
|
withCredentials: this.configuration.withCredentials,
|
|
11339
11339
|
observe: 'response'
|
|
11340
11340
|
};
|
|
11341
|
-
return this.http.request(RequestMethod$
|
|
11341
|
+
return this.http.request(RequestMethod$2R.Get, path, requestOptions);
|
|
11342
11342
|
}
|
|
11343
11343
|
/**
|
|
11344
11344
|
* Get details for a bill split distribution
|
|
@@ -11402,7 +11402,7 @@ class BillSplitService {
|
|
|
11402
11402
|
withCredentials: this.configuration.withCredentials,
|
|
11403
11403
|
observe: 'response'
|
|
11404
11404
|
};
|
|
11405
|
-
return this.http.request(RequestMethod$
|
|
11405
|
+
return this.http.request(RequestMethod$2R.Get, path, requestOptions);
|
|
11406
11406
|
}
|
|
11407
11407
|
/**
|
|
11408
11408
|
* Get a list of bill split versions on this account and meter relationship
|
|
@@ -11460,7 +11460,7 @@ class BillSplitService {
|
|
|
11460
11460
|
withCredentials: this.configuration.withCredentials,
|
|
11461
11461
|
observe: 'response'
|
|
11462
11462
|
};
|
|
11463
|
-
return this.http.request(RequestMethod$
|
|
11463
|
+
return this.http.request(RequestMethod$2R.Get, path, requestOptions);
|
|
11464
11464
|
}
|
|
11465
11465
|
/**
|
|
11466
11466
|
* Get a list of bill split versions which match the provided filter conditions
|
|
@@ -11518,7 +11518,7 @@ class BillSplitService {
|
|
|
11518
11518
|
withCredentials: this.configuration.withCredentials,
|
|
11519
11519
|
observe: 'response'
|
|
11520
11520
|
};
|
|
11521
|
-
return this.http.request(RequestMethod$
|
|
11521
|
+
return this.http.request(RequestMethod$2R.Get, path, requestOptions);
|
|
11522
11522
|
}
|
|
11523
11523
|
/**
|
|
11524
11524
|
* Get a list of bill split versions on an account
|
|
@@ -11570,7 +11570,7 @@ class BillSplitService {
|
|
|
11570
11570
|
withCredentials: this.configuration.withCredentials,
|
|
11571
11571
|
observe: 'response'
|
|
11572
11572
|
};
|
|
11573
|
-
return this.http.request(RequestMethod$
|
|
11573
|
+
return this.http.request(RequestMethod$2R.Get, path, requestOptions);
|
|
11574
11574
|
}
|
|
11575
11575
|
/**
|
|
11576
11576
|
* Get bill split parent information for a meter
|
|
@@ -11622,7 +11622,7 @@ class BillSplitService {
|
|
|
11622
11622
|
withCredentials: this.configuration.withCredentials,
|
|
11623
11623
|
observe: 'response'
|
|
11624
11624
|
};
|
|
11625
|
-
return this.http.request(RequestMethod$
|
|
11625
|
+
return this.http.request(RequestMethod$2R.Get, path, requestOptions);
|
|
11626
11626
|
}
|
|
11627
11627
|
/**
|
|
11628
11628
|
* Manage details for a bill split distribution
|
|
@@ -11691,7 +11691,7 @@ class BillSplitService {
|
|
|
11691
11691
|
withCredentials: this.configuration.withCredentials,
|
|
11692
11692
|
observe: 'response'
|
|
11693
11693
|
};
|
|
11694
|
-
return this.http.request(RequestMethod$
|
|
11694
|
+
return this.http.request(RequestMethod$2R.Put, path, requestOptions);
|
|
11695
11695
|
}
|
|
11696
11696
|
/**
|
|
11697
11697
|
* Manage a bill split's version history All bill split versions to save on this account and meter relationship should be passed If versionId is passed, this version will be updated to the request body values If copyVersionId is passed, a new version will be created and all instructions and inputs on the copyVersionId will be copied If versionId and copyVersionId are null a new version will be created Versions cannot overlap If a bill split version currently exists in the database, but is not passed in it will be deleted Only versions that are not currently associated with any bills can be deleted If any part of the create, update, or delete process fails, the entire process is rolled back
|
|
@@ -11754,7 +11754,7 @@ class BillSplitService {
|
|
|
11754
11754
|
withCredentials: this.configuration.withCredentials,
|
|
11755
11755
|
observe: 'response'
|
|
11756
11756
|
};
|
|
11757
|
-
return this.http.request(RequestMethod$
|
|
11757
|
+
return this.http.request(RequestMethod$2R.Put, path, requestOptions);
|
|
11758
11758
|
}
|
|
11759
11759
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillSplitService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11760
11760
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillSplitService });
|
|
@@ -11782,7 +11782,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
11782
11782
|
* Do not edit the class manually.
|
|
11783
11783
|
*/
|
|
11784
11784
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
11785
|
-
const RequestMethod$
|
|
11785
|
+
const RequestMethod$2Q = {
|
|
11786
11786
|
Get: 'get',
|
|
11787
11787
|
Post: 'post',
|
|
11788
11788
|
Put: 'put',
|
|
@@ -11899,7 +11899,7 @@ class BillViewService {
|
|
|
11899
11899
|
withCredentials: this.configuration.withCredentials,
|
|
11900
11900
|
observe: 'response'
|
|
11901
11901
|
};
|
|
11902
|
-
return this.http.request(RequestMethod$
|
|
11902
|
+
return this.http.request(RequestMethod$2Q.Get, path, requestOptions);
|
|
11903
11903
|
}
|
|
11904
11904
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillViewService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11905
11905
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BillViewService });
|
|
@@ -11927,7 +11927,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
11927
11927
|
* Do not edit the class manually.
|
|
11928
11928
|
*/
|
|
11929
11929
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
11930
|
-
const RequestMethod$
|
|
11930
|
+
const RequestMethod$2P = {
|
|
11931
11931
|
Get: 'get',
|
|
11932
11932
|
Post: 'post',
|
|
11933
11933
|
Put: 'put',
|
|
@@ -12272,7 +12272,7 @@ class BudgetService {
|
|
|
12272
12272
|
withCredentials: this.configuration.withCredentials,
|
|
12273
12273
|
observe: 'response'
|
|
12274
12274
|
};
|
|
12275
|
-
return this.http.request(RequestMethod$
|
|
12275
|
+
return this.http.request(RequestMethod$2P.Post, path, requestOptions);
|
|
12276
12276
|
}
|
|
12277
12277
|
/**
|
|
12278
12278
|
* Creates a budget version
|
|
@@ -12329,7 +12329,7 @@ class BudgetService {
|
|
|
12329
12329
|
withCredentials: this.configuration.withCredentials,
|
|
12330
12330
|
observe: 'response'
|
|
12331
12331
|
};
|
|
12332
|
-
return this.http.request(RequestMethod$
|
|
12332
|
+
return this.http.request(RequestMethod$2P.Post, path, requestOptions);
|
|
12333
12333
|
}
|
|
12334
12334
|
/**
|
|
12335
12335
|
* Deletes a budget
|
|
@@ -12379,7 +12379,7 @@ class BudgetService {
|
|
|
12379
12379
|
withCredentials: this.configuration.withCredentials,
|
|
12380
12380
|
observe: 'response'
|
|
12381
12381
|
};
|
|
12382
|
-
return this.http.request(RequestMethod$
|
|
12382
|
+
return this.http.request(RequestMethod$2P.Delete, path, requestOptions);
|
|
12383
12383
|
}
|
|
12384
12384
|
/**
|
|
12385
12385
|
* Deletes a budget version
|
|
@@ -12435,7 +12435,7 @@ class BudgetService {
|
|
|
12435
12435
|
withCredentials: this.configuration.withCredentials,
|
|
12436
12436
|
observe: 'response'
|
|
12437
12437
|
};
|
|
12438
|
-
return this.http.request(RequestMethod$
|
|
12438
|
+
return this.http.request(RequestMethod$2P.Delete, path, requestOptions);
|
|
12439
12439
|
}
|
|
12440
12440
|
/**
|
|
12441
12441
|
* Edits a budget
|
|
@@ -12492,7 +12492,7 @@ class BudgetService {
|
|
|
12492
12492
|
withCredentials: this.configuration.withCredentials,
|
|
12493
12493
|
observe: 'response'
|
|
12494
12494
|
};
|
|
12495
|
-
return this.http.request(RequestMethod$
|
|
12495
|
+
return this.http.request(RequestMethod$2P.Put, path, requestOptions);
|
|
12496
12496
|
}
|
|
12497
12497
|
/**
|
|
12498
12498
|
* Edits a budget version
|
|
@@ -12555,7 +12555,7 @@ class BudgetService {
|
|
|
12555
12555
|
withCredentials: this.configuration.withCredentials,
|
|
12556
12556
|
observe: 'response'
|
|
12557
12557
|
};
|
|
12558
|
-
return this.http.request(RequestMethod$
|
|
12558
|
+
return this.http.request(RequestMethod$2P.Put, path, requestOptions);
|
|
12559
12559
|
}
|
|
12560
12560
|
/**
|
|
12561
12561
|
* Retrieves the budget by ID
|
|
@@ -12607,7 +12607,7 @@ class BudgetService {
|
|
|
12607
12607
|
withCredentials: this.configuration.withCredentials,
|
|
12608
12608
|
observe: 'response'
|
|
12609
12609
|
};
|
|
12610
|
-
return this.http.request(RequestMethod$
|
|
12610
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12611
12611
|
}
|
|
12612
12612
|
/**
|
|
12613
12613
|
* Retrieves a list of available budget data types
|
|
@@ -12653,7 +12653,7 @@ class BudgetService {
|
|
|
12653
12653
|
withCredentials: this.configuration.withCredentials,
|
|
12654
12654
|
observe: 'response'
|
|
12655
12655
|
};
|
|
12656
|
-
return this.http.request(RequestMethod$
|
|
12656
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12657
12657
|
}
|
|
12658
12658
|
/**
|
|
12659
12659
|
* Retrieves a list of budget period types
|
|
@@ -12699,7 +12699,7 @@ class BudgetService {
|
|
|
12699
12699
|
withCredentials: this.configuration.withCredentials,
|
|
12700
12700
|
observe: 'response'
|
|
12701
12701
|
};
|
|
12702
|
-
return this.http.request(RequestMethod$
|
|
12702
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12703
12703
|
}
|
|
12704
12704
|
/**
|
|
12705
12705
|
* Retrieves a list of available budget usage methods
|
|
@@ -12745,7 +12745,7 @@ class BudgetService {
|
|
|
12745
12745
|
withCredentials: this.configuration.withCredentials,
|
|
12746
12746
|
observe: 'response'
|
|
12747
12747
|
};
|
|
12748
|
-
return this.http.request(RequestMethod$
|
|
12748
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12749
12749
|
}
|
|
12750
12750
|
/**
|
|
12751
12751
|
* Retrieves a specific version for a budget
|
|
@@ -12803,7 +12803,7 @@ class BudgetService {
|
|
|
12803
12803
|
withCredentials: this.configuration.withCredentials,
|
|
12804
12804
|
observe: 'response'
|
|
12805
12805
|
};
|
|
12806
|
-
return this.http.request(RequestMethod$
|
|
12806
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12807
12807
|
}
|
|
12808
12808
|
/**
|
|
12809
12809
|
* Retrieves the summary for a specific version on a budget
|
|
@@ -12865,7 +12865,7 @@ class BudgetService {
|
|
|
12865
12865
|
withCredentials: this.configuration.withCredentials,
|
|
12866
12866
|
observe: 'response'
|
|
12867
12867
|
};
|
|
12868
|
-
return this.http.request(RequestMethod$
|
|
12868
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12869
12869
|
}
|
|
12870
12870
|
/**
|
|
12871
12871
|
* Retrieves all the versions for a specified budget
|
|
@@ -12917,7 +12917,7 @@ class BudgetService {
|
|
|
12917
12917
|
withCredentials: this.configuration.withCredentials,
|
|
12918
12918
|
observe: 'response'
|
|
12919
12919
|
};
|
|
12920
|
-
return this.http.request(RequestMethod$
|
|
12920
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12921
12921
|
}
|
|
12922
12922
|
/**
|
|
12923
12923
|
* Retrieves all the budgets
|
|
@@ -12963,7 +12963,7 @@ class BudgetService {
|
|
|
12963
12963
|
withCredentials: this.configuration.withCredentials,
|
|
12964
12964
|
observe: 'response'
|
|
12965
12965
|
};
|
|
12966
|
-
return this.http.request(RequestMethod$
|
|
12966
|
+
return this.http.request(RequestMethod$2P.Get, path, requestOptions);
|
|
12967
12967
|
}
|
|
12968
12968
|
/**
|
|
12969
12969
|
* Sets a budget version as active, and all other versions as inactive.
|
|
@@ -13021,7 +13021,7 @@ class BudgetService {
|
|
|
13021
13021
|
withCredentials: this.configuration.withCredentials,
|
|
13022
13022
|
observe: 'response'
|
|
13023
13023
|
};
|
|
13024
|
-
return this.http.request(RequestMethod$
|
|
13024
|
+
return this.http.request(RequestMethod$2P.Put, path, requestOptions);
|
|
13025
13025
|
}
|
|
13026
13026
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BudgetService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
13027
13027
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BudgetService });
|
|
@@ -13049,7 +13049,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
13049
13049
|
* Do not edit the class manually.
|
|
13050
13050
|
*/
|
|
13051
13051
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
13052
|
-
const RequestMethod$
|
|
13052
|
+
const RequestMethod$2O = {
|
|
13053
13053
|
Get: 'get',
|
|
13054
13054
|
Post: 'post',
|
|
13055
13055
|
Put: 'put',
|
|
@@ -13467,7 +13467,7 @@ class CalculatedBillService {
|
|
|
13467
13467
|
withCredentials: this.configuration.withCredentials,
|
|
13468
13468
|
observe: 'response'
|
|
13469
13469
|
};
|
|
13470
|
-
return this.http.request(RequestMethod$
|
|
13470
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13471
13471
|
}
|
|
13472
13472
|
/**
|
|
13473
13473
|
* Get calculated cost details
|
|
@@ -13531,7 +13531,7 @@ class CalculatedBillService {
|
|
|
13531
13531
|
withCredentials: this.configuration.withCredentials,
|
|
13532
13532
|
observe: 'response'
|
|
13533
13533
|
};
|
|
13534
|
-
return this.http.request(RequestMethod$
|
|
13534
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13535
13535
|
}
|
|
13536
13536
|
/**
|
|
13537
13537
|
* Get calculated demand details
|
|
@@ -13595,7 +13595,7 @@ class CalculatedBillService {
|
|
|
13595
13595
|
withCredentials: this.configuration.withCredentials,
|
|
13596
13596
|
observe: 'response'
|
|
13597
13597
|
};
|
|
13598
|
-
return this.http.request(RequestMethod$
|
|
13598
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13599
13599
|
}
|
|
13600
13600
|
/**
|
|
13601
13601
|
* All details related to calculated bill setup including use, cost, meter line items, and account line items
|
|
@@ -13659,7 +13659,7 @@ class CalculatedBillService {
|
|
|
13659
13659
|
withCredentials: this.configuration.withCredentials,
|
|
13660
13660
|
observe: 'response'
|
|
13661
13661
|
};
|
|
13662
|
-
return this.http.request(RequestMethod$
|
|
13662
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13663
13663
|
}
|
|
13664
13664
|
/**
|
|
13665
13665
|
* Get calculated use details
|
|
@@ -13723,7 +13723,7 @@ class CalculatedBillService {
|
|
|
13723
13723
|
withCredentials: this.configuration.withCredentials,
|
|
13724
13724
|
observe: 'response'
|
|
13725
13725
|
};
|
|
13726
|
-
return this.http.request(RequestMethod$
|
|
13726
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13727
13727
|
}
|
|
13728
13728
|
/**
|
|
13729
13729
|
* Get all chargeback tasks with details for a specific version on an account and meter
|
|
@@ -13787,7 +13787,7 @@ class CalculatedBillService {
|
|
|
13787
13787
|
withCredentials: this.configuration.withCredentials,
|
|
13788
13788
|
observe: 'response'
|
|
13789
13789
|
};
|
|
13790
|
-
return this.http.request(RequestMethod$
|
|
13790
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13791
13791
|
}
|
|
13792
13792
|
/**
|
|
13793
13793
|
* Get a list of calculated bill versions on this account and meter relationship
|
|
@@ -13845,7 +13845,7 @@ class CalculatedBillService {
|
|
|
13845
13845
|
withCredentials: this.configuration.withCredentials,
|
|
13846
13846
|
observe: 'response'
|
|
13847
13847
|
};
|
|
13848
|
-
return this.http.request(RequestMethod$
|
|
13848
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13849
13849
|
}
|
|
13850
13850
|
/**
|
|
13851
13851
|
* Get a list of calculated bill versions which match the provided filter conditions
|
|
@@ -13903,7 +13903,7 @@ class CalculatedBillService {
|
|
|
13903
13903
|
withCredentials: this.configuration.withCredentials,
|
|
13904
13904
|
observe: 'response'
|
|
13905
13905
|
};
|
|
13906
|
-
return this.http.request(RequestMethod$
|
|
13906
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13907
13907
|
}
|
|
13908
13908
|
/**
|
|
13909
13909
|
* Get a list of calculated bill versions on a meter
|
|
@@ -13955,7 +13955,7 @@ class CalculatedBillService {
|
|
|
13955
13955
|
withCredentials: this.configuration.withCredentials,
|
|
13956
13956
|
observe: 'response'
|
|
13957
13957
|
};
|
|
13958
|
-
return this.http.request(RequestMethod$
|
|
13958
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
13959
13959
|
}
|
|
13960
13960
|
/**
|
|
13961
13961
|
* Get calculated bill meter line items
|
|
@@ -14019,7 +14019,7 @@ class CalculatedBillService {
|
|
|
14019
14019
|
withCredentials: this.configuration.withCredentials,
|
|
14020
14020
|
observe: 'response'
|
|
14021
14021
|
};
|
|
14022
|
-
return this.http.request(RequestMethod$
|
|
14022
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
14023
14023
|
}
|
|
14024
14024
|
/**
|
|
14025
14025
|
* Manage calculated bill account line items The order of items in the list defines the calculation order All line items to save should be passed If a line currently exists and is not passed in it will be deleted If any part of the create, update, or delete process fails, the entire process is rolled back
|
|
@@ -14088,7 +14088,7 @@ class CalculatedBillService {
|
|
|
14088
14088
|
withCredentials: this.configuration.withCredentials,
|
|
14089
14089
|
observe: 'response'
|
|
14090
14090
|
};
|
|
14091
|
-
return this.http.request(RequestMethod$
|
|
14091
|
+
return this.http.request(RequestMethod$2O.Put, path, requestOptions);
|
|
14092
14092
|
}
|
|
14093
14093
|
/**
|
|
14094
14094
|
* Manage calculated bill's cost If cost does not exist on the distribution it will be added If one exists it will be saved as the option sent in Since cost is required for the calculated bill distribution to work. One option is always required and cannot be deleted
|
|
@@ -14157,7 +14157,7 @@ class CalculatedBillService {
|
|
|
14157
14157
|
withCredentials: this.configuration.withCredentials,
|
|
14158
14158
|
observe: 'response'
|
|
14159
14159
|
};
|
|
14160
|
-
return this.http.request(RequestMethod$
|
|
14160
|
+
return this.http.request(RequestMethod$2O.Put, path, requestOptions);
|
|
14161
14161
|
}
|
|
14162
14162
|
/**
|
|
14163
14163
|
* Manage calculated bill's demand If demand does not exist on the distribution it will be added If one exists it will be saved as the option sent in If the dto sends null for both (channel and fixed), then demand will get cleared
|
|
@@ -14226,7 +14226,7 @@ class CalculatedBillService {
|
|
|
14226
14226
|
withCredentials: this.configuration.withCredentials,
|
|
14227
14227
|
observe: 'response'
|
|
14228
14228
|
};
|
|
14229
|
-
return this.http.request(RequestMethod$
|
|
14229
|
+
return this.http.request(RequestMethod$2O.Put, path, requestOptions);
|
|
14230
14230
|
}
|
|
14231
14231
|
/**
|
|
14232
14232
|
* Manage calculated bill's use * If use does not exist on the distribution it will be added * If use already exists it will be saved as the option sent in and any existing inputs will be deleted * Since use is required for the calculated bill distribution to work, one option is always required and cannot be deleted
|
|
@@ -14295,7 +14295,7 @@ class CalculatedBillService {
|
|
|
14295
14295
|
withCredentials: this.configuration.withCredentials,
|
|
14296
14296
|
observe: 'response'
|
|
14297
14297
|
};
|
|
14298
|
-
return this.http.request(RequestMethod$
|
|
14298
|
+
return this.http.request(RequestMethod$2O.Put, path, requestOptions);
|
|
14299
14299
|
}
|
|
14300
14300
|
/**
|
|
14301
14301
|
* Manage a calculated bill's version history All calculated bill versions to save on this account and meter relationship should be passed If versionId is passed, this version will be updated to the request body values If copyVersionId is passed, a new version will be created and all instructions and inputs on the copyVersionId will be copied If versionId and copyVersionId are null a new version will be created Versions cannot overlap If a calculated bill version currently exists in the database, but is not passed in it will be deleted Only versions that are not currently associated with any bills can be deleted If any part of the create, update, or delete process fails, the entire process is rolled back
|
|
@@ -14358,7 +14358,7 @@ class CalculatedBillService {
|
|
|
14358
14358
|
withCredentials: this.configuration.withCredentials,
|
|
14359
14359
|
observe: 'response'
|
|
14360
14360
|
};
|
|
14361
|
-
return this.http.request(RequestMethod$
|
|
14361
|
+
return this.http.request(RequestMethod$2O.Put, path, requestOptions);
|
|
14362
14362
|
}
|
|
14363
14363
|
/**
|
|
14364
14364
|
* Manage calculated bill meter line items The order of items in the list defines the calculation order All line items to save should be passed If a line currently exists and is not passed in it will be deleted If any part of the create, update, or delete process fails, the entire process is rolled back
|
|
@@ -14427,7 +14427,7 @@ class CalculatedBillService {
|
|
|
14427
14427
|
withCredentials: this.configuration.withCredentials,
|
|
14428
14428
|
observe: 'response'
|
|
14429
14429
|
};
|
|
14430
|
-
return this.http.request(RequestMethod$
|
|
14430
|
+
return this.http.request(RequestMethod$2O.Put, path, requestOptions);
|
|
14431
14431
|
}
|
|
14432
14432
|
/**
|
|
14433
14433
|
* Forces all Account and Meter Chargeback flags in the system to be recalculated
|
|
@@ -14471,7 +14471,7 @@ class CalculatedBillService {
|
|
|
14471
14471
|
withCredentials: this.configuration.withCredentials,
|
|
14472
14472
|
observe: 'response'
|
|
14473
14473
|
};
|
|
14474
|
-
return this.http.request(RequestMethod$
|
|
14474
|
+
return this.http.request(RequestMethod$2O.Get, path, requestOptions);
|
|
14475
14475
|
}
|
|
14476
14476
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CalculatedBillService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14477
14477
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CalculatedBillService });
|
|
@@ -14499,7 +14499,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
14499
14499
|
* Do not edit the class manually.
|
|
14500
14500
|
*/
|
|
14501
14501
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
14502
|
-
const RequestMethod$
|
|
14502
|
+
const RequestMethod$2N = {
|
|
14503
14503
|
Get: 'get',
|
|
14504
14504
|
Post: 'post',
|
|
14505
14505
|
Put: 'put',
|
|
@@ -14770,7 +14770,7 @@ class ChannelService {
|
|
|
14770
14770
|
withCredentials: this.configuration.withCredentials,
|
|
14771
14771
|
observe: 'response'
|
|
14772
14772
|
};
|
|
14773
|
-
return this.http.request(RequestMethod$
|
|
14773
|
+
return this.http.request(RequestMethod$2N.Post, path, requestOptions);
|
|
14774
14774
|
}
|
|
14775
14775
|
/**
|
|
14776
14776
|
* Creates and assigns a channel to a meter
|
|
@@ -14827,7 +14827,7 @@ class ChannelService {
|
|
|
14827
14827
|
withCredentials: this.configuration.withCredentials,
|
|
14828
14828
|
observe: 'response'
|
|
14829
14829
|
};
|
|
14830
|
-
return this.http.request(RequestMethod$
|
|
14830
|
+
return this.http.request(RequestMethod$2N.Post, path, requestOptions);
|
|
14831
14831
|
}
|
|
14832
14832
|
/**
|
|
14833
14833
|
* Delete a channel version There must always be one version on a channel If you try and delete the only version on a channel an exception will occur
|
|
@@ -14889,7 +14889,7 @@ class ChannelService {
|
|
|
14889
14889
|
withCredentials: this.configuration.withCredentials,
|
|
14890
14890
|
observe: 'response'
|
|
14891
14891
|
};
|
|
14892
|
-
return this.http.request(RequestMethod$
|
|
14892
|
+
return this.http.request(RequestMethod$2N.Delete, path, requestOptions);
|
|
14893
14893
|
}
|
|
14894
14894
|
/**
|
|
14895
14895
|
* Deletes a meter's channel All readings linked to this channel will also be deleted. A channel that is part of a distribution cannot be deleted.
|
|
@@ -14945,7 +14945,7 @@ class ChannelService {
|
|
|
14945
14945
|
withCredentials: this.configuration.withCredentials,
|
|
14946
14946
|
observe: 'response'
|
|
14947
14947
|
};
|
|
14948
|
-
return this.http.request(RequestMethod$
|
|
14948
|
+
return this.http.request(RequestMethod$2N.Delete, path, requestOptions);
|
|
14949
14949
|
}
|
|
14950
14950
|
/**
|
|
14951
14951
|
* Download file for a channel version custom field
|
|
@@ -15013,7 +15013,7 @@ class ChannelService {
|
|
|
15013
15013
|
withCredentials: this.configuration.withCredentials,
|
|
15014
15014
|
observe: 'response'
|
|
15015
15015
|
};
|
|
15016
|
-
return this.http.request(RequestMethod$
|
|
15016
|
+
return this.http.request(RequestMethod$2N.Get, path, requestOptions);
|
|
15017
15017
|
}
|
|
15018
15018
|
/**
|
|
15019
15019
|
* Update a channel version
|
|
@@ -15082,7 +15082,7 @@ class ChannelService {
|
|
|
15082
15082
|
withCredentials: this.configuration.withCredentials,
|
|
15083
15083
|
observe: 'response'
|
|
15084
15084
|
};
|
|
15085
|
-
return this.http.request(RequestMethod$
|
|
15085
|
+
return this.http.request(RequestMethod$2N.Put, path, requestOptions);
|
|
15086
15086
|
}
|
|
15087
15087
|
/**
|
|
15088
15088
|
* Updates a meter's channel If a channel version exists and is not passed into the request body it will continue to exist and no data will be changed. To delete a specific channel version call DELETE meter/{meterId}/channel/{channelId}/version/{versionId}
|
|
@@ -15145,7 +15145,7 @@ class ChannelService {
|
|
|
15145
15145
|
withCredentials: this.configuration.withCredentials,
|
|
15146
15146
|
observe: 'response'
|
|
15147
15147
|
};
|
|
15148
|
-
return this.http.request(RequestMethod$
|
|
15148
|
+
return this.http.request(RequestMethod$2N.Put, path, requestOptions);
|
|
15149
15149
|
}
|
|
15150
15150
|
/**
|
|
15151
15151
|
* Retrieves a channel and its channel versions linked to a meter
|
|
@@ -15203,7 +15203,7 @@ class ChannelService {
|
|
|
15203
15203
|
withCredentials: this.configuration.withCredentials,
|
|
15204
15204
|
observe: 'response'
|
|
15205
15205
|
};
|
|
15206
|
-
return this.http.request(RequestMethod$
|
|
15206
|
+
return this.http.request(RequestMethod$2N.Get, path, requestOptions);
|
|
15207
15207
|
}
|
|
15208
15208
|
/**
|
|
15209
15209
|
* Retrieves all channel and channel versions linked to a meter
|
|
@@ -15255,7 +15255,7 @@ class ChannelService {
|
|
|
15255
15255
|
withCredentials: this.configuration.withCredentials,
|
|
15256
15256
|
observe: 'response'
|
|
15257
15257
|
};
|
|
15258
|
-
return this.http.request(RequestMethod$
|
|
15258
|
+
return this.http.request(RequestMethod$2N.Get, path, requestOptions);
|
|
15259
15259
|
}
|
|
15260
15260
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChannelService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15261
15261
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChannelService });
|
|
@@ -15283,7 +15283,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
15283
15283
|
* Do not edit the class manually.
|
|
15284
15284
|
*/
|
|
15285
15285
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
15286
|
-
const RequestMethod$
|
|
15286
|
+
const RequestMethod$2M = {
|
|
15287
15287
|
Get: 'get',
|
|
15288
15288
|
Post: 'post',
|
|
15289
15289
|
Put: 'put',
|
|
@@ -15449,7 +15449,7 @@ class ChargebackEngineService {
|
|
|
15449
15449
|
withCredentials: this.configuration.withCredentials,
|
|
15450
15450
|
observe: 'response'
|
|
15451
15451
|
};
|
|
15452
|
-
return this.http.request(RequestMethod$
|
|
15452
|
+
return this.http.request(RequestMethod$2M.Post, path, requestOptions);
|
|
15453
15453
|
}
|
|
15454
15454
|
/**
|
|
15455
15455
|
* Process one or more Calculated Bill distributions for a specific billing period
|
|
@@ -15500,7 +15500,7 @@ class ChargebackEngineService {
|
|
|
15500
15500
|
withCredentials: this.configuration.withCredentials,
|
|
15501
15501
|
observe: 'response'
|
|
15502
15502
|
};
|
|
15503
|
-
return this.http.request(RequestMethod$
|
|
15503
|
+
return this.http.request(RequestMethod$2M.Post, path, requestOptions);
|
|
15504
15504
|
}
|
|
15505
15505
|
/**
|
|
15506
15506
|
* Process distributions assigned to a chargeback workflow for a specific billing period. If settings are not provided, the last month will be processed.
|
|
@@ -15557,7 +15557,7 @@ class ChargebackEngineService {
|
|
|
15557
15557
|
withCredentials: this.configuration.withCredentials,
|
|
15558
15558
|
observe: 'response'
|
|
15559
15559
|
};
|
|
15560
|
-
return this.http.request(RequestMethod$
|
|
15560
|
+
return this.http.request(RequestMethod$2M.Post, path, requestOptions);
|
|
15561
15561
|
}
|
|
15562
15562
|
/**
|
|
15563
15563
|
* Process distributions assigned to a chargeback workflow step for a specific billing period
|
|
@@ -15614,7 +15614,7 @@ class ChargebackEngineService {
|
|
|
15614
15614
|
withCredentials: this.configuration.withCredentials,
|
|
15615
15615
|
observe: 'response'
|
|
15616
15616
|
};
|
|
15617
|
-
return this.http.request(RequestMethod$
|
|
15617
|
+
return this.http.request(RequestMethod$2M.Post, path, requestOptions);
|
|
15618
15618
|
}
|
|
15619
15619
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChargebackEngineService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15620
15620
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChargebackEngineService });
|
|
@@ -15642,7 +15642,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
15642
15642
|
* Do not edit the class manually.
|
|
15643
15643
|
*/
|
|
15644
15644
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
15645
|
-
const RequestMethod$
|
|
15645
|
+
const RequestMethod$2L = {
|
|
15646
15646
|
Get: 'get',
|
|
15647
15647
|
Post: 'post',
|
|
15648
15648
|
Put: 'put',
|
|
@@ -15840,7 +15840,7 @@ class ChargebackTaskService {
|
|
|
15840
15840
|
withCredentials: this.configuration.withCredentials,
|
|
15841
15841
|
observe: 'response'
|
|
15842
15842
|
};
|
|
15843
|
-
return this.http.request(RequestMethod$
|
|
15843
|
+
return this.http.request(RequestMethod$2L.Post, path, requestOptions);
|
|
15844
15844
|
}
|
|
15845
15845
|
/**
|
|
15846
15846
|
* Retrieves a chargeback task with details
|
|
@@ -15892,7 +15892,7 @@ class ChargebackTaskService {
|
|
|
15892
15892
|
withCredentials: this.configuration.withCredentials,
|
|
15893
15893
|
observe: 'response'
|
|
15894
15894
|
};
|
|
15895
|
-
return this.http.request(RequestMethod$
|
|
15895
|
+
return this.http.request(RequestMethod$2L.Get, path, requestOptions);
|
|
15896
15896
|
}
|
|
15897
15897
|
/**
|
|
15898
15898
|
* Retrieves a chargeback task's error log as an EXCEL file
|
|
@@ -15944,7 +15944,7 @@ class ChargebackTaskService {
|
|
|
15944
15944
|
withCredentials: this.configuration.withCredentials,
|
|
15945
15945
|
observe: 'response'
|
|
15946
15946
|
};
|
|
15947
|
-
return this.http.request(RequestMethod$
|
|
15947
|
+
return this.http.request(RequestMethod$2L.Get, path, requestOptions);
|
|
15948
15948
|
}
|
|
15949
15949
|
/**
|
|
15950
15950
|
* Get all chargeback tasks with details
|
|
@@ -16002,7 +16002,7 @@ class ChargebackTaskService {
|
|
|
16002
16002
|
withCredentials: this.configuration.withCredentials,
|
|
16003
16003
|
observe: 'response'
|
|
16004
16004
|
};
|
|
16005
|
-
return this.http.request(RequestMethod$
|
|
16005
|
+
return this.http.request(RequestMethod$2L.Get, path, requestOptions);
|
|
16006
16006
|
}
|
|
16007
16007
|
/**
|
|
16008
16008
|
* Update a chargeback task's comment
|
|
@@ -16059,7 +16059,7 @@ class ChargebackTaskService {
|
|
|
16059
16059
|
withCredentials: this.configuration.withCredentials,
|
|
16060
16060
|
observe: 'response'
|
|
16061
16061
|
};
|
|
16062
|
-
return this.http.request(RequestMethod$
|
|
16062
|
+
return this.http.request(RequestMethod$2L.Put, path, requestOptions);
|
|
16063
16063
|
}
|
|
16064
16064
|
/**
|
|
16065
16065
|
* Void all bills created by the chargeback task If this is a split task, any source bills will be reset to has not been split If any bills have already been exported they will still be voided
|
|
@@ -16109,7 +16109,7 @@ class ChargebackTaskService {
|
|
|
16109
16109
|
withCredentials: this.configuration.withCredentials,
|
|
16110
16110
|
observe: 'response'
|
|
16111
16111
|
};
|
|
16112
|
-
return this.http.request(RequestMethod$
|
|
16112
|
+
return this.http.request(RequestMethod$2L.Post, path, requestOptions);
|
|
16113
16113
|
}
|
|
16114
16114
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChargebackTaskService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16115
16115
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChargebackTaskService });
|
|
@@ -16137,7 +16137,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
16137
16137
|
* Do not edit the class manually.
|
|
16138
16138
|
*/
|
|
16139
16139
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
16140
|
-
const RequestMethod$
|
|
16140
|
+
const RequestMethod$2K = {
|
|
16141
16141
|
Get: 'get',
|
|
16142
16142
|
Post: 'post',
|
|
16143
16143
|
Put: 'put',
|
|
@@ -16430,7 +16430,7 @@ class ChargebackWorkflowService {
|
|
|
16430
16430
|
withCredentials: this.configuration.withCredentials,
|
|
16431
16431
|
observe: 'response'
|
|
16432
16432
|
};
|
|
16433
|
-
return this.http.request(RequestMethod$
|
|
16433
|
+
return this.http.request(RequestMethod$2K.Put, path, requestOptions);
|
|
16434
16434
|
}
|
|
16435
16435
|
/**
|
|
16436
16436
|
* Create a chargeback workflow
|
|
@@ -16481,7 +16481,7 @@ class ChargebackWorkflowService {
|
|
|
16481
16481
|
withCredentials: this.configuration.withCredentials,
|
|
16482
16482
|
observe: 'response'
|
|
16483
16483
|
};
|
|
16484
|
-
return this.http.request(RequestMethod$
|
|
16484
|
+
return this.http.request(RequestMethod$2K.Post, path, requestOptions);
|
|
16485
16485
|
}
|
|
16486
16486
|
/**
|
|
16487
16487
|
* Delete a chargeback workflow
|
|
@@ -16531,7 +16531,7 @@ class ChargebackWorkflowService {
|
|
|
16531
16531
|
withCredentials: this.configuration.withCredentials,
|
|
16532
16532
|
observe: 'response'
|
|
16533
16533
|
};
|
|
16534
|
-
return this.http.request(RequestMethod$
|
|
16534
|
+
return this.http.request(RequestMethod$2K.Delete, path, requestOptions);
|
|
16535
16535
|
}
|
|
16536
16536
|
/**
|
|
16537
16537
|
* Delete all bills created by a chargeback workflow step If this workflow step was run multiple times, all bills created across all runs for the billing period will be voided If this is a split step, any source bills will be reset to has not been split If any bills have already been exported they will still be deleted
|
|
@@ -16585,7 +16585,7 @@ class ChargebackWorkflowService {
|
|
|
16585
16585
|
withCredentials: this.configuration.withCredentials,
|
|
16586
16586
|
observe: 'response'
|
|
16587
16587
|
};
|
|
16588
|
-
return this.http.request(RequestMethod$
|
|
16588
|
+
return this.http.request(RequestMethod$2K.Post, path, requestOptions);
|
|
16589
16589
|
}
|
|
16590
16590
|
/**
|
|
16591
16591
|
* Edit a chargeback workflow
|
|
@@ -16642,7 +16642,7 @@ class ChargebackWorkflowService {
|
|
|
16642
16642
|
withCredentials: this.configuration.withCredentials,
|
|
16643
16643
|
observe: 'response'
|
|
16644
16644
|
};
|
|
16645
|
-
return this.http.request(RequestMethod$
|
|
16645
|
+
return this.http.request(RequestMethod$2K.Put, path, requestOptions);
|
|
16646
16646
|
}
|
|
16647
16647
|
/**
|
|
16648
16648
|
* Get a chargeback workflow
|
|
@@ -16694,7 +16694,7 @@ class ChargebackWorkflowService {
|
|
|
16694
16694
|
withCredentials: this.configuration.withCredentials,
|
|
16695
16695
|
observe: 'response'
|
|
16696
16696
|
};
|
|
16697
|
-
return this.http.request(RequestMethod$
|
|
16697
|
+
return this.http.request(RequestMethod$2K.Get, path, requestOptions);
|
|
16698
16698
|
}
|
|
16699
16699
|
/**
|
|
16700
16700
|
* Get a digest of all bills by meter for all meters involved in a chargeback workflow step for a given billing period.
|
|
@@ -16750,7 +16750,7 @@ class ChargebackWorkflowService {
|
|
|
16750
16750
|
withCredentials: this.configuration.withCredentials,
|
|
16751
16751
|
observe: 'response'
|
|
16752
16752
|
};
|
|
16753
|
-
return this.http.request(RequestMethod$
|
|
16753
|
+
return this.http.request(RequestMethod$2K.Get, path, requestOptions);
|
|
16754
16754
|
}
|
|
16755
16755
|
/**
|
|
16756
16756
|
* Get a single chargeback workflow step
|
|
@@ -16802,7 +16802,7 @@ class ChargebackWorkflowService {
|
|
|
16802
16802
|
withCredentials: this.configuration.withCredentials,
|
|
16803
16803
|
observe: 'response'
|
|
16804
16804
|
};
|
|
16805
|
-
return this.http.request(RequestMethod$
|
|
16805
|
+
return this.http.request(RequestMethod$2K.Get, path, requestOptions);
|
|
16806
16806
|
}
|
|
16807
16807
|
/**
|
|
16808
16808
|
* Get a list of chargeback workflow steps
|
|
@@ -16852,7 +16852,7 @@ class ChargebackWorkflowService {
|
|
|
16852
16852
|
withCredentials: this.configuration.withCredentials,
|
|
16853
16853
|
observe: 'response'
|
|
16854
16854
|
};
|
|
16855
|
-
return this.http.request(RequestMethod$
|
|
16855
|
+
return this.http.request(RequestMethod$2K.Get, path, requestOptions);
|
|
16856
16856
|
}
|
|
16857
16857
|
/**
|
|
16858
16858
|
* Get a list of chargeback workflows
|
|
@@ -16898,7 +16898,7 @@ class ChargebackWorkflowService {
|
|
|
16898
16898
|
withCredentials: this.configuration.withCredentials,
|
|
16899
16899
|
observe: 'response'
|
|
16900
16900
|
};
|
|
16901
|
-
return this.http.request(RequestMethod$
|
|
16901
|
+
return this.http.request(RequestMethod$2K.Get, path, requestOptions);
|
|
16902
16902
|
}
|
|
16903
16903
|
/**
|
|
16904
16904
|
* Void all bills created by a chargeback workflow step for a particular billing period If this workflow step was run multiple times, all bills created across all runs for the billing period will be voided If this is a split step, any source bills will be reset to has not been split If any bills have already been exported they will still be voided
|
|
@@ -16952,7 +16952,7 @@ class ChargebackWorkflowService {
|
|
|
16952
16952
|
withCredentials: this.configuration.withCredentials,
|
|
16953
16953
|
observe: 'response'
|
|
16954
16954
|
};
|
|
16955
|
-
return this.http.request(RequestMethod$
|
|
16955
|
+
return this.http.request(RequestMethod$2K.Post, path, requestOptions);
|
|
16956
16956
|
}
|
|
16957
16957
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChargebackWorkflowService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16958
16958
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ChargebackWorkflowService });
|
|
@@ -16980,7 +16980,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
16980
16980
|
* Do not edit the class manually.
|
|
16981
16981
|
*/
|
|
16982
16982
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
16983
|
-
const RequestMethod$
|
|
16983
|
+
const RequestMethod$2J = {
|
|
16984
16984
|
Get: 'get',
|
|
16985
16985
|
Post: 'post',
|
|
16986
16986
|
Put: 'put',
|
|
@@ -17230,7 +17230,7 @@ class CollectionService {
|
|
|
17230
17230
|
withCredentials: this.configuration.withCredentials,
|
|
17231
17231
|
observe: 'response'
|
|
17232
17232
|
};
|
|
17233
|
-
return this.http.request(RequestMethod$
|
|
17233
|
+
return this.http.request(RequestMethod$2J.Post, path, requestOptions);
|
|
17234
17234
|
}
|
|
17235
17235
|
/**
|
|
17236
17236
|
* Deletes a collection
|
|
@@ -17280,7 +17280,7 @@ class CollectionService {
|
|
|
17280
17280
|
withCredentials: this.configuration.withCredentials,
|
|
17281
17281
|
observe: 'response'
|
|
17282
17282
|
};
|
|
17283
|
-
return this.http.request(RequestMethod$
|
|
17283
|
+
return this.http.request(RequestMethod$2J.Delete, path, requestOptions);
|
|
17284
17284
|
}
|
|
17285
17285
|
/**
|
|
17286
17286
|
* Download file for a collection custom field
|
|
@@ -17336,7 +17336,7 @@ class CollectionService {
|
|
|
17336
17336
|
withCredentials: this.configuration.withCredentials,
|
|
17337
17337
|
observe: 'response'
|
|
17338
17338
|
};
|
|
17339
|
-
return this.http.request(RequestMethod$
|
|
17339
|
+
return this.http.request(RequestMethod$2J.Get, path, requestOptions);
|
|
17340
17340
|
}
|
|
17341
17341
|
/**
|
|
17342
17342
|
* Edits a collection
|
|
@@ -17393,7 +17393,7 @@ class CollectionService {
|
|
|
17393
17393
|
withCredentials: this.configuration.withCredentials,
|
|
17394
17394
|
observe: 'response'
|
|
17395
17395
|
};
|
|
17396
|
-
return this.http.request(RequestMethod$
|
|
17396
|
+
return this.http.request(RequestMethod$2J.Put, path, requestOptions);
|
|
17397
17397
|
}
|
|
17398
17398
|
/**
|
|
17399
17399
|
* Edit the custom field values on a collection
|
|
@@ -17450,7 +17450,7 @@ class CollectionService {
|
|
|
17450
17450
|
withCredentials: this.configuration.withCredentials,
|
|
17451
17451
|
observe: 'response'
|
|
17452
17452
|
};
|
|
17453
|
-
return this.http.request(RequestMethod$
|
|
17453
|
+
return this.http.request(RequestMethod$2J.Put, path, requestOptions);
|
|
17454
17454
|
}
|
|
17455
17455
|
/**
|
|
17456
17456
|
* Retrieves the collection by ID
|
|
@@ -17502,7 +17502,7 @@ class CollectionService {
|
|
|
17502
17502
|
withCredentials: this.configuration.withCredentials,
|
|
17503
17503
|
observe: 'response'
|
|
17504
17504
|
};
|
|
17505
|
-
return this.http.request(RequestMethod$
|
|
17505
|
+
return this.http.request(RequestMethod$2J.Get, path, requestOptions);
|
|
17506
17506
|
}
|
|
17507
17507
|
/**
|
|
17508
17508
|
* Get custom field values for a collection
|
|
@@ -17554,7 +17554,7 @@ class CollectionService {
|
|
|
17554
17554
|
withCredentials: this.configuration.withCredentials,
|
|
17555
17555
|
observe: 'response'
|
|
17556
17556
|
};
|
|
17557
|
-
return this.http.request(RequestMethod$
|
|
17557
|
+
return this.http.request(RequestMethod$2J.Get, path, requestOptions);
|
|
17558
17558
|
}
|
|
17559
17559
|
/**
|
|
17560
17560
|
* Retrieves all the collections
|
|
@@ -17612,7 +17612,7 @@ class CollectionService {
|
|
|
17612
17612
|
withCredentials: this.configuration.withCredentials,
|
|
17613
17613
|
observe: 'response'
|
|
17614
17614
|
};
|
|
17615
|
-
return this.http.request(RequestMethod$
|
|
17615
|
+
return this.http.request(RequestMethod$2J.Get, path, requestOptions);
|
|
17616
17616
|
}
|
|
17617
17617
|
/**
|
|
17618
17618
|
*
|
|
@@ -17669,7 +17669,7 @@ class CollectionService {
|
|
|
17669
17669
|
withCredentials: this.configuration.withCredentials,
|
|
17670
17670
|
observe: 'response'
|
|
17671
17671
|
};
|
|
17672
|
-
return this.http.request(RequestMethod$
|
|
17672
|
+
return this.http.request(RequestMethod$2J.Put, path, requestOptions);
|
|
17673
17673
|
}
|
|
17674
17674
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CollectionService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
17675
17675
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CollectionService });
|
|
@@ -17697,7 +17697,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
17697
17697
|
* Do not edit the class manually.
|
|
17698
17698
|
*/
|
|
17699
17699
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
17700
|
-
const RequestMethod$
|
|
17700
|
+
const RequestMethod$2I = {
|
|
17701
17701
|
Get: 'get',
|
|
17702
17702
|
Post: 'post',
|
|
17703
17703
|
Put: 'put',
|
|
@@ -17895,7 +17895,7 @@ class CommodityService {
|
|
|
17895
17895
|
withCredentials: this.configuration.withCredentials,
|
|
17896
17896
|
observe: 'response'
|
|
17897
17897
|
};
|
|
17898
|
-
return this.http.request(RequestMethod$
|
|
17898
|
+
return this.http.request(RequestMethod$2I.Post, path, requestOptions);
|
|
17899
17899
|
}
|
|
17900
17900
|
/**
|
|
17901
17901
|
* Deletes a commodity
|
|
@@ -17945,7 +17945,7 @@ class CommodityService {
|
|
|
17945
17945
|
withCredentials: this.configuration.withCredentials,
|
|
17946
17946
|
observe: 'response'
|
|
17947
17947
|
};
|
|
17948
|
-
return this.http.request(RequestMethod$
|
|
17948
|
+
return this.http.request(RequestMethod$2I.Delete, path, requestOptions);
|
|
17949
17949
|
}
|
|
17950
17950
|
/**
|
|
17951
17951
|
* Edits a commodity
|
|
@@ -18002,7 +18002,7 @@ class CommodityService {
|
|
|
18002
18002
|
withCredentials: this.configuration.withCredentials,
|
|
18003
18003
|
observe: 'response'
|
|
18004
18004
|
};
|
|
18005
|
-
return this.http.request(RequestMethod$
|
|
18005
|
+
return this.http.request(RequestMethod$2I.Put, path, requestOptions);
|
|
18006
18006
|
}
|
|
18007
18007
|
/**
|
|
18008
18008
|
* Gets the commodities If topmostcostcenter, topmostcollection, topmostplace or account filters are used then the commodities in use at or under that node will be returned. The inUse filter cannot be combined with the above filters.
|
|
@@ -18052,7 +18052,7 @@ class CommodityService {
|
|
|
18052
18052
|
withCredentials: this.configuration.withCredentials,
|
|
18053
18053
|
observe: 'response'
|
|
18054
18054
|
};
|
|
18055
|
-
return this.http.request(RequestMethod$
|
|
18055
|
+
return this.http.request(RequestMethod$2I.Get, path, requestOptions);
|
|
18056
18056
|
}
|
|
18057
18057
|
/**
|
|
18058
18058
|
* Gets a commodity
|
|
@@ -18104,7 +18104,7 @@ class CommodityService {
|
|
|
18104
18104
|
withCredentials: this.configuration.withCredentials,
|
|
18105
18105
|
observe: 'response'
|
|
18106
18106
|
};
|
|
18107
|
-
return this.http.request(RequestMethod$
|
|
18107
|
+
return this.http.request(RequestMethod$2I.Get, path, requestOptions);
|
|
18108
18108
|
}
|
|
18109
18109
|
/**
|
|
18110
18110
|
* Returns a list of units for a specific commodity and value type
|
|
@@ -18160,7 +18160,7 @@ class CommodityService {
|
|
|
18160
18160
|
withCredentials: this.configuration.withCredentials,
|
|
18161
18161
|
observe: 'response'
|
|
18162
18162
|
};
|
|
18163
|
-
return this.http.request(RequestMethod$
|
|
18163
|
+
return this.http.request(RequestMethod$2I.Get, path, requestOptions);
|
|
18164
18164
|
}
|
|
18165
18165
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommodityService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
18166
18166
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommodityService });
|
|
@@ -18188,7 +18188,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
18188
18188
|
* Do not edit the class manually.
|
|
18189
18189
|
*/
|
|
18190
18190
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
18191
|
-
const RequestMethod$
|
|
18191
|
+
const RequestMethod$2H = {
|
|
18192
18192
|
Get: 'get',
|
|
18193
18193
|
Post: 'post',
|
|
18194
18194
|
Put: 'put',
|
|
@@ -18368,7 +18368,7 @@ class CommodityCategoryService {
|
|
|
18368
18368
|
withCredentials: this.configuration.withCredentials,
|
|
18369
18369
|
observe: 'response'
|
|
18370
18370
|
};
|
|
18371
|
-
return this.http.request(RequestMethod$
|
|
18371
|
+
return this.http.request(RequestMethod$2H.Post, path, requestOptions);
|
|
18372
18372
|
}
|
|
18373
18373
|
/**
|
|
18374
18374
|
* Deletes a commodity category
|
|
@@ -18418,7 +18418,7 @@ class CommodityCategoryService {
|
|
|
18418
18418
|
withCredentials: this.configuration.withCredentials,
|
|
18419
18419
|
observe: 'response'
|
|
18420
18420
|
};
|
|
18421
|
-
return this.http.request(RequestMethod$
|
|
18421
|
+
return this.http.request(RequestMethod$2H.Delete, path, requestOptions);
|
|
18422
18422
|
}
|
|
18423
18423
|
/**
|
|
18424
18424
|
* Edits a commodity category
|
|
@@ -18475,7 +18475,7 @@ class CommodityCategoryService {
|
|
|
18475
18475
|
withCredentials: this.configuration.withCredentials,
|
|
18476
18476
|
observe: 'response'
|
|
18477
18477
|
};
|
|
18478
|
-
return this.http.request(RequestMethod$
|
|
18478
|
+
return this.http.request(RequestMethod$2H.Put, path, requestOptions);
|
|
18479
18479
|
}
|
|
18480
18480
|
/**
|
|
18481
18481
|
* Gets the commodity categories
|
|
@@ -18521,7 +18521,7 @@ class CommodityCategoryService {
|
|
|
18521
18521
|
withCredentials: this.configuration.withCredentials,
|
|
18522
18522
|
observe: 'response'
|
|
18523
18523
|
};
|
|
18524
|
-
return this.http.request(RequestMethod$
|
|
18524
|
+
return this.http.request(RequestMethod$2H.Get, path, requestOptions);
|
|
18525
18525
|
}
|
|
18526
18526
|
/**
|
|
18527
18527
|
* Gets a commodity category by ID
|
|
@@ -18573,7 +18573,7 @@ class CommodityCategoryService {
|
|
|
18573
18573
|
withCredentials: this.configuration.withCredentials,
|
|
18574
18574
|
observe: 'response'
|
|
18575
18575
|
};
|
|
18576
|
-
return this.http.request(RequestMethod$
|
|
18576
|
+
return this.http.request(RequestMethod$2H.Get, path, requestOptions);
|
|
18577
18577
|
}
|
|
18578
18578
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommodityCategoryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
18579
18579
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommodityCategoryService });
|
|
@@ -18601,7 +18601,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
18601
18601
|
* Do not edit the class manually.
|
|
18602
18602
|
*/
|
|
18603
18603
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
18604
|
-
const RequestMethod$
|
|
18604
|
+
const RequestMethod$2G = {
|
|
18605
18605
|
Get: 'get',
|
|
18606
18606
|
Post: 'post',
|
|
18607
18607
|
Put: 'put',
|
|
@@ -18723,7 +18723,7 @@ class CommodityDigestService {
|
|
|
18723
18723
|
withCredentials: this.configuration.withCredentials,
|
|
18724
18724
|
observe: 'response'
|
|
18725
18725
|
};
|
|
18726
|
-
return this.http.request(RequestMethod$
|
|
18726
|
+
return this.http.request(RequestMethod$2G.Get, path, requestOptions);
|
|
18727
18727
|
}
|
|
18728
18728
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommodityDigestService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
18729
18729
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommodityDigestService });
|
|
@@ -18751,7 +18751,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
18751
18751
|
* Do not edit the class manually.
|
|
18752
18752
|
*/
|
|
18753
18753
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
18754
|
-
const RequestMethod$
|
|
18754
|
+
const RequestMethod$2F = {
|
|
18755
18755
|
Get: 'get',
|
|
18756
18756
|
Post: 'post',
|
|
18757
18757
|
Put: 'put',
|
|
@@ -18889,7 +18889,7 @@ class CostCategoryService {
|
|
|
18889
18889
|
withCredentials: this.configuration.withCredentials,
|
|
18890
18890
|
observe: 'response'
|
|
18891
18891
|
};
|
|
18892
|
-
return this.http.request(RequestMethod$
|
|
18892
|
+
return this.http.request(RequestMethod$2F.Put, path, requestOptions);
|
|
18893
18893
|
}
|
|
18894
18894
|
/**
|
|
18895
18895
|
* Get all cost categories
|
|
@@ -18935,7 +18935,7 @@ class CostCategoryService {
|
|
|
18935
18935
|
withCredentials: this.configuration.withCredentials,
|
|
18936
18936
|
observe: 'response'
|
|
18937
18937
|
};
|
|
18938
|
-
return this.http.request(RequestMethod$
|
|
18938
|
+
return this.http.request(RequestMethod$2F.Get, path, requestOptions);
|
|
18939
18939
|
}
|
|
18940
18940
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CostCategoryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
18941
18941
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CostCategoryService });
|
|
@@ -18963,7 +18963,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
18963
18963
|
* Do not edit the class manually.
|
|
18964
18964
|
*/
|
|
18965
18965
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
18966
|
-
const RequestMethod$
|
|
18966
|
+
const RequestMethod$2E = {
|
|
18967
18967
|
Get: 'get',
|
|
18968
18968
|
Post: 'post',
|
|
18969
18969
|
Put: 'put',
|
|
@@ -19163,7 +19163,7 @@ class CostCenterService {
|
|
|
19163
19163
|
withCredentials: this.configuration.withCredentials,
|
|
19164
19164
|
observe: 'response'
|
|
19165
19165
|
};
|
|
19166
|
-
return this.http.request(RequestMethod$
|
|
19166
|
+
return this.http.request(RequestMethod$2E.Post, path, requestOptions);
|
|
19167
19167
|
}
|
|
19168
19168
|
/**
|
|
19169
19169
|
* Deletes a cost center
|
|
@@ -19213,7 +19213,7 @@ class CostCenterService {
|
|
|
19213
19213
|
withCredentials: this.configuration.withCredentials,
|
|
19214
19214
|
observe: 'response'
|
|
19215
19215
|
};
|
|
19216
|
-
return this.http.request(RequestMethod$
|
|
19216
|
+
return this.http.request(RequestMethod$2E.Delete, path, requestOptions);
|
|
19217
19217
|
}
|
|
19218
19218
|
/**
|
|
19219
19219
|
* Edits a cost center
|
|
@@ -19270,7 +19270,7 @@ class CostCenterService {
|
|
|
19270
19270
|
withCredentials: this.configuration.withCredentials,
|
|
19271
19271
|
observe: 'response'
|
|
19272
19272
|
};
|
|
19273
|
-
return this.http.request(RequestMethod$
|
|
19273
|
+
return this.http.request(RequestMethod$2E.Put, path, requestOptions);
|
|
19274
19274
|
}
|
|
19275
19275
|
/**
|
|
19276
19276
|
* Retrieves the cost center by ID
|
|
@@ -19322,7 +19322,7 @@ class CostCenterService {
|
|
|
19322
19322
|
withCredentials: this.configuration.withCredentials,
|
|
19323
19323
|
observe: 'response'
|
|
19324
19324
|
};
|
|
19325
|
-
return this.http.request(RequestMethod$
|
|
19325
|
+
return this.http.request(RequestMethod$2E.Get, path, requestOptions);
|
|
19326
19326
|
}
|
|
19327
19327
|
/**
|
|
19328
19328
|
* Retrieves all the cost centers
|
|
@@ -19380,7 +19380,7 @@ class CostCenterService {
|
|
|
19380
19380
|
withCredentials: this.configuration.withCredentials,
|
|
19381
19381
|
observe: 'response'
|
|
19382
19382
|
};
|
|
19383
|
-
return this.http.request(RequestMethod$
|
|
19383
|
+
return this.http.request(RequestMethod$2E.Get, path, requestOptions);
|
|
19384
19384
|
}
|
|
19385
19385
|
/**
|
|
19386
19386
|
* Move list of costCenters to be under parentCostCenterId
|
|
@@ -19437,7 +19437,7 @@ class CostCenterService {
|
|
|
19437
19437
|
withCredentials: this.configuration.withCredentials,
|
|
19438
19438
|
observe: 'response'
|
|
19439
19439
|
};
|
|
19440
|
-
return this.http.request(RequestMethod$
|
|
19440
|
+
return this.http.request(RequestMethod$2E.Put, path, requestOptions);
|
|
19441
19441
|
}
|
|
19442
19442
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CostCenterService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
19443
19443
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CostCenterService });
|
|
@@ -19465,7 +19465,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
19465
19465
|
* Do not edit the class manually.
|
|
19466
19466
|
*/
|
|
19467
19467
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
19468
|
-
const RequestMethod$
|
|
19468
|
+
const RequestMethod$2D = {
|
|
19469
19469
|
Get: 'get',
|
|
19470
19470
|
Post: 'post',
|
|
19471
19471
|
Put: 'put',
|
|
@@ -19642,7 +19642,7 @@ class CostCenterDigestService {
|
|
|
19642
19642
|
withCredentials: this.configuration.withCredentials,
|
|
19643
19643
|
observe: 'response'
|
|
19644
19644
|
};
|
|
19645
|
-
return this.http.request(RequestMethod$
|
|
19645
|
+
return this.http.request(RequestMethod$2D.Get, path, requestOptions);
|
|
19646
19646
|
}
|
|
19647
19647
|
/**
|
|
19648
19648
|
* Retrieves rolled up actual billing data by costCenter for a given number of years- Result includes cost, use, unit cost on a monthly basis. It also includes commodity level break up.
|
|
@@ -19700,7 +19700,7 @@ class CostCenterDigestService {
|
|
|
19700
19700
|
withCredentials: this.configuration.withCredentials,
|
|
19701
19701
|
observe: 'response'
|
|
19702
19702
|
};
|
|
19703
|
-
return this.http.request(RequestMethod$
|
|
19703
|
+
return this.http.request(RequestMethod$2D.Get, path, requestOptions);
|
|
19704
19704
|
}
|
|
19705
19705
|
/**
|
|
19706
19706
|
* Retrieves rolled up actual billing data by costCenter for a given number of years- Result includes cost, use, unit cost on an yearly basis. It also includes commodity level break up.
|
|
@@ -19764,7 +19764,7 @@ class CostCenterDigestService {
|
|
|
19764
19764
|
withCredentials: this.configuration.withCredentials,
|
|
19765
19765
|
observe: 'response'
|
|
19766
19766
|
};
|
|
19767
|
-
return this.http.request(RequestMethod$
|
|
19767
|
+
return this.http.request(RequestMethod$2D.Get, path, requestOptions);
|
|
19768
19768
|
}
|
|
19769
19769
|
/**
|
|
19770
19770
|
* Retrieves rolled up actual billing data by costCenter for a given number of years- Result includes cost, use, unit cost on an yearly basis. It also includes commodity level break up.
|
|
@@ -19822,7 +19822,7 @@ class CostCenterDigestService {
|
|
|
19822
19822
|
withCredentials: this.configuration.withCredentials,
|
|
19823
19823
|
observe: 'response'
|
|
19824
19824
|
};
|
|
19825
|
-
return this.http.request(RequestMethod$
|
|
19825
|
+
return this.http.request(RequestMethod$2D.Get, path, requestOptions);
|
|
19826
19826
|
}
|
|
19827
19827
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CostCenterDigestService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
19828
19828
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CostCenterDigestService });
|
|
@@ -19850,7 +19850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
19850
19850
|
* Do not edit the class manually.
|
|
19851
19851
|
*/
|
|
19852
19852
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
19853
|
-
const RequestMethod$
|
|
19853
|
+
const RequestMethod$2C = {
|
|
19854
19854
|
Get: 'get',
|
|
19855
19855
|
Post: 'post',
|
|
19856
19856
|
Put: 'put',
|
|
@@ -19960,7 +19960,7 @@ class CountryService {
|
|
|
19960
19960
|
withCredentials: this.configuration.withCredentials,
|
|
19961
19961
|
observe: 'response'
|
|
19962
19962
|
};
|
|
19963
|
-
return this.http.request(RequestMethod$
|
|
19963
|
+
return this.http.request(RequestMethod$2C.Get, path, requestOptions);
|
|
19964
19964
|
}
|
|
19965
19965
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CountryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
19966
19966
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CountryService });
|
|
@@ -19988,7 +19988,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
19988
19988
|
* Do not edit the class manually.
|
|
19989
19989
|
*/
|
|
19990
19990
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
19991
|
-
const RequestMethod$
|
|
19991
|
+
const RequestMethod$2B = {
|
|
19992
19992
|
Get: 'get',
|
|
19993
19993
|
Post: 'post',
|
|
19994
19994
|
Put: 'put',
|
|
@@ -20103,7 +20103,7 @@ class CustomerService {
|
|
|
20103
20103
|
withCredentials: this.configuration.withCredentials,
|
|
20104
20104
|
observe: 'response'
|
|
20105
20105
|
};
|
|
20106
|
-
return this.http.request(RequestMethod$
|
|
20106
|
+
return this.http.request(RequestMethod$2B.Get, path, requestOptions);
|
|
20107
20107
|
}
|
|
20108
20108
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CustomerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
20109
20109
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CustomerService });
|
|
@@ -20131,7 +20131,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
20131
20131
|
* Do not edit the class manually.
|
|
20132
20132
|
*/
|
|
20133
20133
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
20134
|
-
const RequestMethod$
|
|
20134
|
+
const RequestMethod$2A = {
|
|
20135
20135
|
Get: 'get',
|
|
20136
20136
|
Post: 'post',
|
|
20137
20137
|
Put: 'put',
|
|
@@ -20485,7 +20485,7 @@ class DashboardService {
|
|
|
20485
20485
|
withCredentials: this.configuration.withCredentials,
|
|
20486
20486
|
observe: 'response'
|
|
20487
20487
|
};
|
|
20488
|
-
return this.http.request(RequestMethod$
|
|
20488
|
+
return this.http.request(RequestMethod$2A.Post, path, requestOptions);
|
|
20489
20489
|
}
|
|
20490
20490
|
/**
|
|
20491
20491
|
* Copy a dashboard To copy a dashboard you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps View permission and the dashboard is shared with you
|
|
@@ -20542,7 +20542,7 @@ class DashboardService {
|
|
|
20542
20542
|
withCredentials: this.configuration.withCredentials,
|
|
20543
20543
|
observe: 'response'
|
|
20544
20544
|
};
|
|
20545
|
-
return this.http.request(RequestMethod$
|
|
20545
|
+
return this.http.request(RequestMethod$2A.Post, path, requestOptions);
|
|
20546
20546
|
}
|
|
20547
20547
|
/**
|
|
20548
20548
|
* Creates a dashboard
|
|
@@ -20593,7 +20593,7 @@ class DashboardService {
|
|
|
20593
20593
|
withCredentials: this.configuration.withCredentials,
|
|
20594
20594
|
observe: 'response'
|
|
20595
20595
|
};
|
|
20596
|
-
return this.http.request(RequestMethod$
|
|
20596
|
+
return this.http.request(RequestMethod$2A.Post, path, requestOptions);
|
|
20597
20597
|
}
|
|
20598
20598
|
/**
|
|
20599
20599
|
* Update the visibility of a dashboard for the current user This must be a dashboard you can see Which means you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps View permission and the dashboard is shared with you
|
|
@@ -20650,7 +20650,7 @@ class DashboardService {
|
|
|
20650
20650
|
withCredentials: this.configuration.withCredentials,
|
|
20651
20651
|
observe: 'response'
|
|
20652
20652
|
};
|
|
20653
|
-
return this.http.request(RequestMethod$
|
|
20653
|
+
return this.http.request(RequestMethod$2A.Put, path, requestOptions);
|
|
20654
20654
|
}
|
|
20655
20655
|
/**
|
|
20656
20656
|
* Delete a dashboard To delete a dashboard you must have created it or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public
|
|
@@ -20700,7 +20700,7 @@ class DashboardService {
|
|
|
20700
20700
|
withCredentials: this.configuration.withCredentials,
|
|
20701
20701
|
observe: 'response'
|
|
20702
20702
|
};
|
|
20703
|
-
return this.http.request(RequestMethod$
|
|
20703
|
+
return this.http.request(RequestMethod$2A.Delete, path, requestOptions);
|
|
20704
20704
|
}
|
|
20705
20705
|
/**
|
|
20706
20706
|
* Edit a dashboard To edit a dashboard you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps Edit permission and the dashboard is shared with you
|
|
@@ -20757,7 +20757,7 @@ class DashboardService {
|
|
|
20757
20757
|
withCredentials: this.configuration.withCredentials,
|
|
20758
20758
|
observe: 'response'
|
|
20759
20759
|
};
|
|
20760
|
-
return this.http.request(RequestMethod$
|
|
20760
|
+
return this.http.request(RequestMethod$2A.Put, path, requestOptions);
|
|
20761
20761
|
}
|
|
20762
20762
|
/**
|
|
20763
20763
|
* Edits the public display settings for a dashboard. Settings can only be applied to public dashboards. Filter settings cannot be applied to Map dashboards. To apply these settings, you must have the PublicDashboardsOrMaps Manage permission. You must also have either created the dashboard or have DashboardAdministrator Manage and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps Edit permission and the dashboard is shared with you
|
|
@@ -20814,7 +20814,7 @@ class DashboardService {
|
|
|
20814
20814
|
withCredentials: this.configuration.withCredentials,
|
|
20815
20815
|
observe: 'response'
|
|
20816
20816
|
};
|
|
20817
|
-
return this.http.request(RequestMethod$
|
|
20817
|
+
return this.http.request(RequestMethod$2A.Put, path, requestOptions);
|
|
20818
20818
|
}
|
|
20819
20819
|
/**
|
|
20820
20820
|
* Update the shared users and user groups for a dashboard To remove sharing completely set SharedWithEveryone to false, SharedUserIds to [], and SharedUserGroupIds to [] You must have created the dashboard and have SharedDashboardsOrMaps Create permission or have DashboardAdministrator Manage permission and the dashboard must be shared at all or have DashboardAdministrator Manage permission and the dashboard is public
|
|
@@ -20871,7 +20871,7 @@ class DashboardService {
|
|
|
20871
20871
|
withCredentials: this.configuration.withCredentials,
|
|
20872
20872
|
observe: 'response'
|
|
20873
20873
|
};
|
|
20874
|
-
return this.http.request(RequestMethod$
|
|
20874
|
+
return this.http.request(RequestMethod$2A.Put, path, requestOptions);
|
|
20875
20875
|
}
|
|
20876
20876
|
/**
|
|
20877
20877
|
* Reorder, edit, and delete specific widgets on a dashboard. To edit dashboard widgets you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps Edit permission and the dashboard is shared with you
|
|
@@ -20928,7 +20928,7 @@ class DashboardService {
|
|
|
20928
20928
|
withCredentials: this.configuration.withCredentials,
|
|
20929
20929
|
observe: 'response'
|
|
20930
20930
|
};
|
|
20931
|
-
return this.http.request(RequestMethod$
|
|
20931
|
+
return this.http.request(RequestMethod$2A.Put, path, requestOptions);
|
|
20932
20932
|
}
|
|
20933
20933
|
/**
|
|
20934
20934
|
* Applies display settings and filters to a map dashboard. These settings are specific to map dashboards, and cannot be applied to standard dashboards. To apply these settings, You must also have either: Created the dashboard or have DashboardAdministrator Manage and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps Edit permission and the dashboard is shared with you
|
|
@@ -20985,7 +20985,7 @@ class DashboardService {
|
|
|
20985
20985
|
withCredentials: this.configuration.withCredentials,
|
|
20986
20986
|
observe: 'response'
|
|
20987
20987
|
};
|
|
20988
|
-
return this.http.request(RequestMethod$
|
|
20988
|
+
return this.http.request(RequestMethod$2A.Put, path, requestOptions);
|
|
20989
20989
|
}
|
|
20990
20990
|
/**
|
|
20991
20991
|
* Retrieves a dashboard. For a dashboard to be returned you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps View permission and the dashboard is shared with you
|
|
@@ -21037,7 +21037,7 @@ class DashboardService {
|
|
|
21037
21037
|
withCredentials: this.configuration.withCredentials,
|
|
21038
21038
|
observe: 'response'
|
|
21039
21039
|
};
|
|
21040
|
-
return this.http.request(RequestMethod$
|
|
21040
|
+
return this.http.request(RequestMethod$2A.Get, path, requestOptions);
|
|
21041
21041
|
}
|
|
21042
21042
|
/**
|
|
21043
21043
|
* Get the individual users and user groups a dashboard is shared with For a dashboard to be returned you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps View permission and the dashboard is shared with you
|
|
@@ -21089,7 +21089,7 @@ class DashboardService {
|
|
|
21089
21089
|
withCredentials: this.configuration.withCredentials,
|
|
21090
21090
|
observe: 'response'
|
|
21091
21091
|
};
|
|
21092
|
-
return this.http.request(RequestMethod$
|
|
21092
|
+
return this.http.request(RequestMethod$2A.Get, path, requestOptions);
|
|
21093
21093
|
}
|
|
21094
21094
|
/**
|
|
21095
21095
|
* Get all widgets on a dashboard For a dashboard to be returned you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps View permission and the dashboard is shared with you
|
|
@@ -21141,7 +21141,7 @@ class DashboardService {
|
|
|
21141
21141
|
withCredentials: this.configuration.withCredentials,
|
|
21142
21142
|
observe: 'response'
|
|
21143
21143
|
};
|
|
21144
|
-
return this.http.request(RequestMethod$
|
|
21144
|
+
return this.http.request(RequestMethod$2A.Get, path, requestOptions);
|
|
21145
21145
|
}
|
|
21146
21146
|
/**
|
|
21147
21147
|
* Retrieves an array of dashboards. The array of dashboards can be filtered by a number of criteria. See the filter property for more details For a dashboard to be returned you must have created the dashboard or have DashboardAdministrator Manage permission and the dashboard is shared at all or have DashboardAdministrator Manage permission and the dashboard is public or have SharedDashboardsOrMaps View permission and the dashboard is shared with you
|
|
@@ -21191,7 +21191,7 @@ class DashboardService {
|
|
|
21191
21191
|
withCredentials: this.configuration.withCredentials,
|
|
21192
21192
|
observe: 'response'
|
|
21193
21193
|
};
|
|
21194
|
-
return this.http.request(RequestMethod$
|
|
21194
|
+
return this.http.request(RequestMethod$2A.Get, path, requestOptions);
|
|
21195
21195
|
}
|
|
21196
21196
|
/**
|
|
21197
21197
|
* Gets the current display settings and filters for a specific map dashboard. Cannot be used to retreive settings for a standard dashboard.
|
|
@@ -21243,7 +21243,7 @@ class DashboardService {
|
|
|
21243
21243
|
withCredentials: this.configuration.withCredentials,
|
|
21244
21244
|
observe: 'response'
|
|
21245
21245
|
};
|
|
21246
|
-
return this.http.request(RequestMethod$
|
|
21246
|
+
return this.http.request(RequestMethod$2A.Get, path, requestOptions);
|
|
21247
21247
|
}
|
|
21248
21248
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: DashboardService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
21249
21249
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: DashboardService });
|
|
@@ -21271,7 +21271,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
21271
21271
|
* Do not edit the class manually.
|
|
21272
21272
|
*/
|
|
21273
21273
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
21274
|
-
const RequestMethod$
|
|
21274
|
+
const RequestMethod$2z = {
|
|
21275
21275
|
Get: 'get',
|
|
21276
21276
|
Post: 'post',
|
|
21277
21277
|
Put: 'put',
|
|
@@ -21471,7 +21471,7 @@ class DataPointService {
|
|
|
21471
21471
|
withCredentials: this.configuration.withCredentials,
|
|
21472
21472
|
observe: 'response'
|
|
21473
21473
|
};
|
|
21474
|
-
return this.http.request(RequestMethod$
|
|
21474
|
+
return this.http.request(RequestMethod$2z.Post, path, requestOptions);
|
|
21475
21475
|
}
|
|
21476
21476
|
/**
|
|
21477
21477
|
* Deletes a data point
|
|
@@ -21521,7 +21521,7 @@ class DataPointService {
|
|
|
21521
21521
|
withCredentials: this.configuration.withCredentials,
|
|
21522
21522
|
observe: 'response'
|
|
21523
21523
|
};
|
|
21524
|
-
return this.http.request(RequestMethod$
|
|
21524
|
+
return this.http.request(RequestMethod$2z.Delete, path, requestOptions);
|
|
21525
21525
|
}
|
|
21526
21526
|
/**
|
|
21527
21527
|
* Edits a data point
|
|
@@ -21578,7 +21578,7 @@ class DataPointService {
|
|
|
21578
21578
|
withCredentials: this.configuration.withCredentials,
|
|
21579
21579
|
observe: 'response'
|
|
21580
21580
|
};
|
|
21581
|
-
return this.http.request(RequestMethod$
|
|
21581
|
+
return this.http.request(RequestMethod$2z.Put, path, requestOptions);
|
|
21582
21582
|
}
|
|
21583
21583
|
/**
|
|
21584
21584
|
* Edits the data point sentinel configuration
|
|
@@ -21635,7 +21635,7 @@ class DataPointService {
|
|
|
21635
21635
|
withCredentials: this.configuration.withCredentials,
|
|
21636
21636
|
observe: 'response'
|
|
21637
21637
|
};
|
|
21638
|
-
return this.http.request(RequestMethod$
|
|
21638
|
+
return this.http.request(RequestMethod$2z.Put, path, requestOptions);
|
|
21639
21639
|
}
|
|
21640
21640
|
/**
|
|
21641
21641
|
* Retrieves a data point
|
|
@@ -21687,7 +21687,7 @@ class DataPointService {
|
|
|
21687
21687
|
withCredentials: this.configuration.withCredentials,
|
|
21688
21688
|
observe: 'response'
|
|
21689
21689
|
};
|
|
21690
|
-
return this.http.request(RequestMethod$
|
|
21690
|
+
return this.http.request(RequestMethod$2z.Get, path, requestOptions);
|
|
21691
21691
|
}
|
|
21692
21692
|
/**
|
|
21693
21693
|
* Retrieves all data points
|
|
@@ -21745,7 +21745,7 @@ class DataPointService {
|
|
|
21745
21745
|
withCredentials: this.configuration.withCredentials,
|
|
21746
21746
|
observe: 'response'
|
|
21747
21747
|
};
|
|
21748
|
-
return this.http.request(RequestMethod$
|
|
21748
|
+
return this.http.request(RequestMethod$2z.Get, path, requestOptions);
|
|
21749
21749
|
}
|
|
21750
21750
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: DataPointService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
21751
21751
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: DataPointService });
|
|
@@ -21773,7 +21773,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
21773
21773
|
* Do not edit the class manually.
|
|
21774
21774
|
*/
|
|
21775
21775
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
21776
|
-
const RequestMethod$
|
|
21776
|
+
const RequestMethod$2y = {
|
|
21777
21777
|
Get: 'get',
|
|
21778
21778
|
Post: 'post',
|
|
21779
21779
|
Put: 'put',
|
|
@@ -21953,7 +21953,7 @@ class EUIGoalService {
|
|
|
21953
21953
|
withCredentials: this.configuration.withCredentials,
|
|
21954
21954
|
observe: 'response'
|
|
21955
21955
|
};
|
|
21956
|
-
return this.http.request(RequestMethod$
|
|
21956
|
+
return this.http.request(RequestMethod$2y.Delete, path, requestOptions);
|
|
21957
21957
|
}
|
|
21958
21958
|
/**
|
|
21959
21959
|
* Deletes all EUI goals at and below the specified topmost place.
|
|
@@ -22003,7 +22003,7 @@ class EUIGoalService {
|
|
|
22003
22003
|
withCredentials: this.configuration.withCredentials,
|
|
22004
22004
|
observe: 'response'
|
|
22005
22005
|
};
|
|
22006
|
-
return this.http.request(RequestMethod$
|
|
22006
|
+
return this.http.request(RequestMethod$2y.Delete, path, requestOptions);
|
|
22007
22007
|
}
|
|
22008
22008
|
/**
|
|
22009
22009
|
* Get EUI goal data for a specific place
|
|
@@ -22055,7 +22055,7 @@ class EUIGoalService {
|
|
|
22055
22055
|
withCredentials: this.configuration.withCredentials,
|
|
22056
22056
|
observe: 'response'
|
|
22057
22057
|
};
|
|
22058
|
-
return this.http.request(RequestMethod$
|
|
22058
|
+
return this.http.request(RequestMethod$2y.Get, path, requestOptions);
|
|
22059
22059
|
}
|
|
22060
22060
|
/**
|
|
22061
22061
|
* Get all EUI goals under the specified topmost place, including that place's goal
|
|
@@ -22107,7 +22107,7 @@ class EUIGoalService {
|
|
|
22107
22107
|
withCredentials: this.configuration.withCredentials,
|
|
22108
22108
|
observe: 'response'
|
|
22109
22109
|
};
|
|
22110
|
-
return this.http.request(RequestMethod$
|
|
22110
|
+
return this.http.request(RequestMethod$2y.Get, path, requestOptions);
|
|
22111
22111
|
}
|
|
22112
22112
|
/**
|
|
22113
22113
|
* Update an EUI goal
|
|
@@ -22164,7 +22164,7 @@ class EUIGoalService {
|
|
|
22164
22164
|
withCredentials: this.configuration.withCredentials,
|
|
22165
22165
|
observe: 'response'
|
|
22166
22166
|
};
|
|
22167
|
-
return this.http.request(RequestMethod$
|
|
22167
|
+
return this.http.request(RequestMethod$2y.Put, path, requestOptions);
|
|
22168
22168
|
}
|
|
22169
22169
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EUIGoalService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
22170
22170
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EUIGoalService });
|
|
@@ -22192,7 +22192,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
22192
22192
|
* Do not edit the class manually.
|
|
22193
22193
|
*/
|
|
22194
22194
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
22195
|
-
const RequestMethod$
|
|
22195
|
+
const RequestMethod$2x = {
|
|
22196
22196
|
Get: 'get',
|
|
22197
22197
|
Post: 'post',
|
|
22198
22198
|
Put: 'put',
|
|
@@ -22375,7 +22375,7 @@ class EmissionRecordService {
|
|
|
22375
22375
|
withCredentials: this.configuration.withCredentials,
|
|
22376
22376
|
observe: 'response'
|
|
22377
22377
|
};
|
|
22378
|
-
return this.http.request(RequestMethod$
|
|
22378
|
+
return this.http.request(RequestMethod$2x.Post, path, requestOptions);
|
|
22379
22379
|
}
|
|
22380
22380
|
/**
|
|
22381
22381
|
* Delete an emission record
|
|
@@ -22425,7 +22425,7 @@ class EmissionRecordService {
|
|
|
22425
22425
|
withCredentials: this.configuration.withCredentials,
|
|
22426
22426
|
observe: 'response'
|
|
22427
22427
|
};
|
|
22428
|
-
return this.http.request(RequestMethod$
|
|
22428
|
+
return this.http.request(RequestMethod$2x.Delete, path, requestOptions);
|
|
22429
22429
|
}
|
|
22430
22430
|
/**
|
|
22431
22431
|
* Edit an emission record
|
|
@@ -22482,7 +22482,7 @@ class EmissionRecordService {
|
|
|
22482
22482
|
withCredentials: this.configuration.withCredentials,
|
|
22483
22483
|
observe: 'response'
|
|
22484
22484
|
};
|
|
22485
|
-
return this.http.request(RequestMethod$
|
|
22485
|
+
return this.http.request(RequestMethod$2x.Put, path, requestOptions);
|
|
22486
22486
|
}
|
|
22487
22487
|
/**
|
|
22488
22488
|
* Retrieve an emission record by ID
|
|
@@ -22534,7 +22534,7 @@ class EmissionRecordService {
|
|
|
22534
22534
|
withCredentials: this.configuration.withCredentials,
|
|
22535
22535
|
observe: 'response'
|
|
22536
22536
|
};
|
|
22537
|
-
return this.http.request(RequestMethod$
|
|
22537
|
+
return this.http.request(RequestMethod$2x.Get, path, requestOptions);
|
|
22538
22538
|
}
|
|
22539
22539
|
/**
|
|
22540
22540
|
* Retrieve a list of emission records
|
|
@@ -22592,7 +22592,7 @@ class EmissionRecordService {
|
|
|
22592
22592
|
withCredentials: this.configuration.withCredentials,
|
|
22593
22593
|
observe: 'response'
|
|
22594
22594
|
};
|
|
22595
|
-
return this.http.request(RequestMethod$
|
|
22595
|
+
return this.http.request(RequestMethod$2x.Get, path, requestOptions);
|
|
22596
22596
|
}
|
|
22597
22597
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EmissionRecordService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
22598
22598
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EmissionRecordService });
|
|
@@ -22620,7 +22620,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
22620
22620
|
* Do not edit the class manually.
|
|
22621
22621
|
*/
|
|
22622
22622
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
22623
|
-
const RequestMethod$
|
|
22623
|
+
const RequestMethod$2w = {
|
|
22624
22624
|
Get: 'get',
|
|
22625
22625
|
Post: 'post',
|
|
22626
22626
|
Put: 'put',
|
|
@@ -22987,7 +22987,7 @@ class EmissionSourceService {
|
|
|
22987
22987
|
withCredentials: this.configuration.withCredentials,
|
|
22988
22988
|
observe: 'response'
|
|
22989
22989
|
};
|
|
22990
|
-
return this.http.request(RequestMethod$
|
|
22990
|
+
return this.http.request(RequestMethod$2w.Post, path, requestOptions);
|
|
22991
22991
|
}
|
|
22992
22992
|
/**
|
|
22993
22993
|
* Creates an emission source
|
|
@@ -23038,7 +23038,7 @@ class EmissionSourceService {
|
|
|
23038
23038
|
withCredentials: this.configuration.withCredentials,
|
|
23039
23039
|
observe: 'response'
|
|
23040
23040
|
};
|
|
23041
|
-
return this.http.request(RequestMethod$
|
|
23041
|
+
return this.http.request(RequestMethod$2w.Post, path, requestOptions);
|
|
23042
23042
|
}
|
|
23043
23043
|
/**
|
|
23044
23044
|
* Deletes an emissions source
|
|
@@ -23092,7 +23092,7 @@ class EmissionSourceService {
|
|
|
23092
23092
|
withCredentials: this.configuration.withCredentials,
|
|
23093
23093
|
observe: 'response'
|
|
23094
23094
|
};
|
|
23095
|
-
return this.http.request(RequestMethod$
|
|
23095
|
+
return this.http.request(RequestMethod$2w.Delete, path, requestOptions);
|
|
23096
23096
|
}
|
|
23097
23097
|
/**
|
|
23098
23098
|
* Download file for a emissions source custom field
|
|
@@ -23148,7 +23148,7 @@ class EmissionSourceService {
|
|
|
23148
23148
|
withCredentials: this.configuration.withCredentials,
|
|
23149
23149
|
observe: 'response'
|
|
23150
23150
|
};
|
|
23151
|
-
return this.http.request(RequestMethod$
|
|
23151
|
+
return this.http.request(RequestMethod$2w.Get, path, requestOptions);
|
|
23152
23152
|
}
|
|
23153
23153
|
/**
|
|
23154
23154
|
* Edits an emissions source
|
|
@@ -23205,7 +23205,7 @@ class EmissionSourceService {
|
|
|
23205
23205
|
withCredentials: this.configuration.withCredentials,
|
|
23206
23206
|
observe: 'response'
|
|
23207
23207
|
};
|
|
23208
|
-
return this.http.request(RequestMethod$
|
|
23208
|
+
return this.http.request(RequestMethod$2w.Put, path, requestOptions);
|
|
23209
23209
|
}
|
|
23210
23210
|
/**
|
|
23211
23211
|
* Edit the custom field values on a emissions source
|
|
@@ -23262,7 +23262,7 @@ class EmissionSourceService {
|
|
|
23262
23262
|
withCredentials: this.configuration.withCredentials,
|
|
23263
23263
|
observe: 'response'
|
|
23264
23264
|
};
|
|
23265
|
-
return this.http.request(RequestMethod$
|
|
23265
|
+
return this.http.request(RequestMethod$2w.Put, path, requestOptions);
|
|
23266
23266
|
}
|
|
23267
23267
|
/**
|
|
23268
23268
|
* Assigns the specified scope category and factor pairings to the specified emission sources. If one or more of the factors provided cannot be applied to the emission source, that emission source will be skipped.
|
|
@@ -23313,7 +23313,7 @@ class EmissionSourceService {
|
|
|
23313
23313
|
withCredentials: this.configuration.withCredentials,
|
|
23314
23314
|
observe: 'response'
|
|
23315
23315
|
};
|
|
23316
|
-
return this.http.request(RequestMethod$
|
|
23316
|
+
return this.http.request(RequestMethod$2w.Put, path, requestOptions);
|
|
23317
23317
|
}
|
|
23318
23318
|
/**
|
|
23319
23319
|
* Edits an emission source
|
|
@@ -23370,7 +23370,7 @@ class EmissionSourceService {
|
|
|
23370
23370
|
withCredentials: this.configuration.withCredentials,
|
|
23371
23371
|
observe: 'response'
|
|
23372
23372
|
};
|
|
23373
|
-
return this.http.request(RequestMethod$
|
|
23373
|
+
return this.http.request(RequestMethod$2w.Put, path, requestOptions);
|
|
23374
23374
|
}
|
|
23375
23375
|
/**
|
|
23376
23376
|
* Edit meter data in an Emission Source
|
|
@@ -23427,7 +23427,7 @@ class EmissionSourceService {
|
|
|
23427
23427
|
withCredentials: this.configuration.withCredentials,
|
|
23428
23428
|
observe: 'response'
|
|
23429
23429
|
};
|
|
23430
|
-
return this.http.request(RequestMethod$
|
|
23430
|
+
return this.http.request(RequestMethod$2w.Put, path, requestOptions);
|
|
23431
23431
|
}
|
|
23432
23432
|
/**
|
|
23433
23433
|
* Retrieves the emissions source by ID
|
|
@@ -23479,7 +23479,7 @@ class EmissionSourceService {
|
|
|
23479
23479
|
withCredentials: this.configuration.withCredentials,
|
|
23480
23480
|
observe: 'response'
|
|
23481
23481
|
};
|
|
23482
|
-
return this.http.request(RequestMethod$
|
|
23482
|
+
return this.http.request(RequestMethod$2w.Get, path, requestOptions);
|
|
23483
23483
|
}
|
|
23484
23484
|
/**
|
|
23485
23485
|
* Get custom field values for an emissions source
|
|
@@ -23531,7 +23531,7 @@ class EmissionSourceService {
|
|
|
23531
23531
|
withCredentials: this.configuration.withCredentials,
|
|
23532
23532
|
observe: 'response'
|
|
23533
23533
|
};
|
|
23534
|
-
return this.http.request(RequestMethod$
|
|
23534
|
+
return this.http.request(RequestMethod$2w.Get, path, requestOptions);
|
|
23535
23535
|
}
|
|
23536
23536
|
/**
|
|
23537
23537
|
* Retrieves an emission source by ID
|
|
@@ -23583,7 +23583,7 @@ class EmissionSourceService {
|
|
|
23583
23583
|
withCredentials: this.configuration.withCredentials,
|
|
23584
23584
|
observe: 'response'
|
|
23585
23585
|
};
|
|
23586
|
-
return this.http.request(RequestMethod$
|
|
23586
|
+
return this.http.request(RequestMethod$2w.Get, path, requestOptions);
|
|
23587
23587
|
}
|
|
23588
23588
|
/**
|
|
23589
23589
|
* Retrieves all the emissions sources
|
|
@@ -23641,7 +23641,7 @@ class EmissionSourceService {
|
|
|
23641
23641
|
withCredentials: this.configuration.withCredentials,
|
|
23642
23642
|
observe: 'response'
|
|
23643
23643
|
};
|
|
23644
|
-
return this.http.request(RequestMethod$
|
|
23644
|
+
return this.http.request(RequestMethod$2w.Get, path, requestOptions);
|
|
23645
23645
|
}
|
|
23646
23646
|
/**
|
|
23647
23647
|
* Retrieves all emission sources
|
|
@@ -23699,7 +23699,7 @@ class EmissionSourceService {
|
|
|
23699
23699
|
withCredentials: this.configuration.withCredentials,
|
|
23700
23700
|
observe: 'response'
|
|
23701
23701
|
};
|
|
23702
|
-
return this.http.request(RequestMethod$
|
|
23702
|
+
return this.http.request(RequestMethod$2w.Get, path, requestOptions);
|
|
23703
23703
|
}
|
|
23704
23704
|
/**
|
|
23705
23705
|
*
|
|
@@ -23756,7 +23756,7 @@ class EmissionSourceService {
|
|
|
23756
23756
|
withCredentials: this.configuration.withCredentials,
|
|
23757
23757
|
observe: 'response'
|
|
23758
23758
|
};
|
|
23759
|
-
return this.http.request(RequestMethod$
|
|
23759
|
+
return this.http.request(RequestMethod$2w.Put, path, requestOptions);
|
|
23760
23760
|
}
|
|
23761
23761
|
/**
|
|
23762
23762
|
* Resets the scope category and factor pairings of the specified emission sources to their commodity default. If no default exists for an emission source's commodity, that emission source will be skipped.
|
|
@@ -23807,7 +23807,7 @@ class EmissionSourceService {
|
|
|
23807
23807
|
withCredentials: this.configuration.withCredentials,
|
|
23808
23808
|
observe: 'response'
|
|
23809
23809
|
};
|
|
23810
|
-
return this.http.request(RequestMethod$
|
|
23810
|
+
return this.http.request(RequestMethod$2w.Put, path, requestOptions);
|
|
23811
23811
|
}
|
|
23812
23812
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EmissionSourceService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
23813
23813
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EmissionSourceService });
|
|
@@ -23835,7 +23835,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
23835
23835
|
* Do not edit the class manually.
|
|
23836
23836
|
*/
|
|
23837
23837
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
23838
|
-
const RequestMethod$
|
|
23838
|
+
const RequestMethod$2v = {
|
|
23839
23839
|
Get: 'get',
|
|
23840
23840
|
Post: 'post',
|
|
23841
23841
|
Put: 'put',
|
|
@@ -24097,7 +24097,7 @@ class EnergyProjectService {
|
|
|
24097
24097
|
withCredentials: this.configuration.withCredentials,
|
|
24098
24098
|
observe: 'response'
|
|
24099
24099
|
};
|
|
24100
|
-
return this.http.request(RequestMethod$
|
|
24100
|
+
return this.http.request(RequestMethod$2v.Post, path, requestOptions);
|
|
24101
24101
|
}
|
|
24102
24102
|
/**
|
|
24103
24103
|
* Create a energy project type
|
|
@@ -24148,7 +24148,7 @@ class EnergyProjectService {
|
|
|
24148
24148
|
withCredentials: this.configuration.withCredentials,
|
|
24149
24149
|
observe: 'response'
|
|
24150
24150
|
};
|
|
24151
|
-
return this.http.request(RequestMethod$
|
|
24151
|
+
return this.http.request(RequestMethod$2v.Post, path, requestOptions);
|
|
24152
24152
|
}
|
|
24153
24153
|
/**
|
|
24154
24154
|
* Deletes an Energy Project
|
|
@@ -24198,7 +24198,7 @@ class EnergyProjectService {
|
|
|
24198
24198
|
withCredentials: this.configuration.withCredentials,
|
|
24199
24199
|
observe: 'response'
|
|
24200
24200
|
};
|
|
24201
|
-
return this.http.request(RequestMethod$
|
|
24201
|
+
return this.http.request(RequestMethod$2v.Delete, path, requestOptions);
|
|
24202
24202
|
}
|
|
24203
24203
|
/**
|
|
24204
24204
|
* Download file for a energy project custom field
|
|
@@ -24254,7 +24254,7 @@ class EnergyProjectService {
|
|
|
24254
24254
|
withCredentials: this.configuration.withCredentials,
|
|
24255
24255
|
observe: 'response'
|
|
24256
24256
|
};
|
|
24257
|
-
return this.http.request(RequestMethod$
|
|
24257
|
+
return this.http.request(RequestMethod$2v.Get, path, requestOptions);
|
|
24258
24258
|
}
|
|
24259
24259
|
/**
|
|
24260
24260
|
* Edits an Energy Project
|
|
@@ -24311,7 +24311,7 @@ class EnergyProjectService {
|
|
|
24311
24311
|
withCredentials: this.configuration.withCredentials,
|
|
24312
24312
|
observe: 'response'
|
|
24313
24313
|
};
|
|
24314
|
-
return this.http.request(RequestMethod$
|
|
24314
|
+
return this.http.request(RequestMethod$2v.Put, path, requestOptions);
|
|
24315
24315
|
}
|
|
24316
24316
|
/**
|
|
24317
24317
|
* Edit the custom field values on a energy project
|
|
@@ -24368,7 +24368,7 @@ class EnergyProjectService {
|
|
|
24368
24368
|
withCredentials: this.configuration.withCredentials,
|
|
24369
24369
|
observe: 'response'
|
|
24370
24370
|
};
|
|
24371
|
-
return this.http.request(RequestMethod$
|
|
24371
|
+
return this.http.request(RequestMethod$2v.Put, path, requestOptions);
|
|
24372
24372
|
}
|
|
24373
24373
|
/**
|
|
24374
24374
|
* Get an energy project
|
|
@@ -24420,7 +24420,7 @@ class EnergyProjectService {
|
|
|
24420
24420
|
withCredentials: this.configuration.withCredentials,
|
|
24421
24421
|
observe: 'response'
|
|
24422
24422
|
};
|
|
24423
|
-
return this.http.request(RequestMethod$
|
|
24423
|
+
return this.http.request(RequestMethod$2v.Get, path, requestOptions);
|
|
24424
24424
|
}
|
|
24425
24425
|
/**
|
|
24426
24426
|
* Get custom field values for a energy project
|
|
@@ -24472,7 +24472,7 @@ class EnergyProjectService {
|
|
|
24472
24472
|
withCredentials: this.configuration.withCredentials,
|
|
24473
24473
|
observe: 'response'
|
|
24474
24474
|
};
|
|
24475
|
-
return this.http.request(RequestMethod$
|
|
24475
|
+
return this.http.request(RequestMethod$2v.Get, path, requestOptions);
|
|
24476
24476
|
}
|
|
24477
24477
|
/**
|
|
24478
24478
|
* Get the energy project managers
|
|
@@ -24522,7 +24522,7 @@ class EnergyProjectService {
|
|
|
24522
24522
|
withCredentials: this.configuration.withCredentials,
|
|
24523
24523
|
observe: 'response'
|
|
24524
24524
|
};
|
|
24525
|
-
return this.http.request(RequestMethod$
|
|
24525
|
+
return this.http.request(RequestMethod$2v.Get, path, requestOptions);
|
|
24526
24526
|
}
|
|
24527
24527
|
/**
|
|
24528
24528
|
* Get all the energy project types
|
|
@@ -24568,7 +24568,7 @@ class EnergyProjectService {
|
|
|
24568
24568
|
withCredentials: this.configuration.withCredentials,
|
|
24569
24569
|
observe: 'response'
|
|
24570
24570
|
};
|
|
24571
|
-
return this.http.request(RequestMethod$
|
|
24571
|
+
return this.http.request(RequestMethod$2v.Get, path, requestOptions);
|
|
24572
24572
|
}
|
|
24573
24573
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyProjectService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
24574
24574
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyProjectService });
|
|
@@ -24596,7 +24596,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
24596
24596
|
* Do not edit the class manually.
|
|
24597
24597
|
*/
|
|
24598
24598
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
24599
|
-
const RequestMethod$
|
|
24599
|
+
const RequestMethod$2u = {
|
|
24600
24600
|
Get: 'get',
|
|
24601
24601
|
Post: 'post',
|
|
24602
24602
|
Put: 'put',
|
|
@@ -24935,7 +24935,7 @@ class EnergyStarService {
|
|
|
24935
24935
|
withCredentials: this.configuration.withCredentials,
|
|
24936
24936
|
observe: 'response'
|
|
24937
24937
|
};
|
|
24938
|
-
return this.http.request(RequestMethod$
|
|
24938
|
+
return this.http.request(RequestMethod$2u.Put, path, requestOptions);
|
|
24939
24939
|
}
|
|
24940
24940
|
/**
|
|
24941
24941
|
* Automatically submit billing data to ENERGY STAR By default calendarized bill data for a 13-month period (excludes current and last month) in the \"Ready\" state for all buildings setup to automatically submit to ENERGY STAR will be submitted If 13 months is not preferred, set up the owner's systemdata key called \"EnergyStarAutoSubmitNumOfMonths\" with an integer value representing the preferred number of months For example - Today is 25th Nov 2021 - all calendarized data for Sep 2020 through Sep 2021 will be submitted The buildings submitted will be within the user's topmost place No data prior to the earliest period to submit set up in ENERGY STAR settings will ever be submitted
|
|
@@ -24981,7 +24981,7 @@ class EnergyStarService {
|
|
|
24981
24981
|
withCredentials: this.configuration.withCredentials,
|
|
24982
24982
|
observe: 'response'
|
|
24983
24983
|
};
|
|
24984
|
-
return this.http.request(RequestMethod$
|
|
24984
|
+
return this.http.request(RequestMethod$2u.Post, path, requestOptions);
|
|
24985
24985
|
}
|
|
24986
24986
|
/**
|
|
24987
24987
|
* Initiate (create) a submission of place data to ENERGY STAR
|
|
@@ -25032,7 +25032,7 @@ class EnergyStarService {
|
|
|
25032
25032
|
withCredentials: this.configuration.withCredentials,
|
|
25033
25033
|
observe: 'response'
|
|
25034
25034
|
};
|
|
25035
|
-
return this.http.request(RequestMethod$
|
|
25035
|
+
return this.http.request(RequestMethod$2u.Post, path, requestOptions);
|
|
25036
25036
|
}
|
|
25037
25037
|
/**
|
|
25038
25038
|
* Edit settings for ENERGY STAR submissions
|
|
@@ -25083,7 +25083,7 @@ class EnergyStarService {
|
|
|
25083
25083
|
withCredentials: this.configuration.withCredentials,
|
|
25084
25084
|
observe: 'response'
|
|
25085
25085
|
};
|
|
25086
|
-
return this.http.request(RequestMethod$
|
|
25086
|
+
return this.http.request(RequestMethod$2u.Put, path, requestOptions);
|
|
25087
25087
|
}
|
|
25088
25088
|
/**
|
|
25089
25089
|
* Get a list of all commodities and, if configured, their mappings in ENERGY STAR
|
|
@@ -25129,7 +25129,7 @@ class EnergyStarService {
|
|
|
25129
25129
|
withCredentials: this.configuration.withCredentials,
|
|
25130
25130
|
observe: 'response'
|
|
25131
25131
|
};
|
|
25132
|
-
return this.http.request(RequestMethod$
|
|
25132
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25133
25133
|
}
|
|
25134
25134
|
/**
|
|
25135
25135
|
* Get settings for ENERGY STAR submissions
|
|
@@ -25175,7 +25175,7 @@ class EnergyStarService {
|
|
|
25175
25175
|
withCredentials: this.configuration.withCredentials,
|
|
25176
25176
|
observe: 'response'
|
|
25177
25177
|
};
|
|
25178
|
-
return this.http.request(RequestMethod$
|
|
25178
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25179
25179
|
}
|
|
25180
25180
|
/**
|
|
25181
25181
|
* Get the submission status for places by submission period. Places that do not match the filter criteria will not be returned. NOTE: Deleting/voiding bills that have already been submitted will not cause submission status to change from \"submitted\".
|
|
@@ -25241,7 +25241,7 @@ class EnergyStarService {
|
|
|
25241
25241
|
withCredentials: this.configuration.withCredentials,
|
|
25242
25242
|
observe: 'response'
|
|
25243
25243
|
};
|
|
25244
|
-
return this.http.request(RequestMethod$
|
|
25244
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25245
25245
|
}
|
|
25246
25246
|
/**
|
|
25247
25247
|
* Get an ENERGY STAR task with its details
|
|
@@ -25293,7 +25293,7 @@ class EnergyStarService {
|
|
|
25293
25293
|
withCredentials: this.configuration.withCredentials,
|
|
25294
25294
|
observe: 'response'
|
|
25295
25295
|
};
|
|
25296
|
-
return this.http.request(RequestMethod$
|
|
25296
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25297
25297
|
}
|
|
25298
25298
|
/**
|
|
25299
25299
|
* Get a list of ENERGY STAR tasks with their details
|
|
@@ -25351,7 +25351,7 @@ class EnergyStarService {
|
|
|
25351
25351
|
withCredentials: this.configuration.withCredentials,
|
|
25352
25352
|
observe: 'response'
|
|
25353
25353
|
};
|
|
25354
|
-
return this.http.request(RequestMethod$
|
|
25354
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25355
25355
|
}
|
|
25356
25356
|
/**
|
|
25357
25357
|
* Get the connection status for a Portfolio Manager account and database
|
|
@@ -25401,7 +25401,7 @@ class EnergyStarService {
|
|
|
25401
25401
|
withCredentials: this.configuration.withCredentials,
|
|
25402
25402
|
observe: 'response'
|
|
25403
25403
|
};
|
|
25404
|
-
return this.http.request(RequestMethod$
|
|
25404
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25405
25405
|
}
|
|
25406
25406
|
/**
|
|
25407
25407
|
* Get list of Portfolio Manager properties
|
|
@@ -25455,7 +25455,7 @@ class EnergyStarService {
|
|
|
25455
25455
|
withCredentials: this.configuration.withCredentials,
|
|
25456
25456
|
observe: 'response'
|
|
25457
25457
|
};
|
|
25458
|
-
return this.http.request(RequestMethod$
|
|
25458
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25459
25459
|
}
|
|
25460
25460
|
/**
|
|
25461
25461
|
* Get a Portfolio Manager property
|
|
@@ -25511,7 +25511,7 @@ class EnergyStarService {
|
|
|
25511
25511
|
withCredentials: this.configuration.withCredentials,
|
|
25512
25512
|
observe: 'response'
|
|
25513
25513
|
};
|
|
25514
|
-
return this.http.request(RequestMethod$
|
|
25514
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25515
25515
|
}
|
|
25516
25516
|
/**
|
|
25517
25517
|
* Get list of Portfolio Manager meters for a property
|
|
@@ -25571,7 +25571,7 @@ class EnergyStarService {
|
|
|
25571
25571
|
withCredentials: this.configuration.withCredentials,
|
|
25572
25572
|
observe: 'response'
|
|
25573
25573
|
};
|
|
25574
|
-
return this.http.request(RequestMethod$
|
|
25574
|
+
return this.http.request(RequestMethod$2u.Get, path, requestOptions);
|
|
25575
25575
|
}
|
|
25576
25576
|
/**
|
|
25577
25577
|
* Unlink owner from portfolio manager account
|
|
@@ -25619,7 +25619,7 @@ class EnergyStarService {
|
|
|
25619
25619
|
withCredentials: this.configuration.withCredentials,
|
|
25620
25620
|
observe: 'response'
|
|
25621
25621
|
};
|
|
25622
|
-
return this.http.request(RequestMethod$
|
|
25622
|
+
return this.http.request(RequestMethod$2u.Delete, path, requestOptions);
|
|
25623
25623
|
}
|
|
25624
25624
|
/**
|
|
25625
25625
|
* Update ENERGY STAR metrics for the places matching the request criteria.
|
|
@@ -25670,7 +25670,7 @@ class EnergyStarService {
|
|
|
25670
25670
|
withCredentials: this.configuration.withCredentials,
|
|
25671
25671
|
observe: 'response'
|
|
25672
25672
|
};
|
|
25673
|
-
return this.http.request(RequestMethod$
|
|
25673
|
+
return this.http.request(RequestMethod$2u.Post, path, requestOptions);
|
|
25674
25674
|
}
|
|
25675
25675
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyStarService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25676
25676
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyStarService });
|
|
@@ -25698,7 +25698,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
25698
25698
|
* Do not edit the class manually.
|
|
25699
25699
|
*/
|
|
25700
25700
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
25701
|
-
const RequestMethod$
|
|
25701
|
+
const RequestMethod$2t = {
|
|
25702
25702
|
Get: 'get',
|
|
25703
25703
|
Post: 'post',
|
|
25704
25704
|
Put: 'put',
|
|
@@ -25808,7 +25808,7 @@ class EnvironmentService {
|
|
|
25808
25808
|
withCredentials: this.configuration.withCredentials,
|
|
25809
25809
|
observe: 'response'
|
|
25810
25810
|
};
|
|
25811
|
-
return this.http.request(RequestMethod$
|
|
25811
|
+
return this.http.request(RequestMethod$2t.Get, path, requestOptions);
|
|
25812
25812
|
}
|
|
25813
25813
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnvironmentService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25814
25814
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnvironmentService });
|
|
@@ -25836,7 +25836,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
25836
25836
|
* Do not edit the class manually.
|
|
25837
25837
|
*/
|
|
25838
25838
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
25839
|
-
const RequestMethod$
|
|
25839
|
+
const RequestMethod$2s = {
|
|
25840
25840
|
Get: 'get',
|
|
25841
25841
|
Post: 'post',
|
|
25842
25842
|
Put: 'put',
|
|
@@ -26088,7 +26088,7 @@ class EsaChannelService {
|
|
|
26088
26088
|
withCredentials: this.configuration.withCredentials,
|
|
26089
26089
|
observe: 'response'
|
|
26090
26090
|
};
|
|
26091
|
-
return this.http.request(RequestMethod$
|
|
26091
|
+
return this.http.request(RequestMethod$2s.Post, path, requestOptions);
|
|
26092
26092
|
}
|
|
26093
26093
|
/**
|
|
26094
26094
|
* Creates an ESA channel version for a specified ESA channel
|
|
@@ -26145,7 +26145,7 @@ class EsaChannelService {
|
|
|
26145
26145
|
withCredentials: this.configuration.withCredentials,
|
|
26146
26146
|
observe: 'response'
|
|
26147
26147
|
};
|
|
26148
|
-
return this.http.request(RequestMethod$
|
|
26148
|
+
return this.http.request(RequestMethod$2s.Post, path, requestOptions);
|
|
26149
26149
|
}
|
|
26150
26150
|
/**
|
|
26151
26151
|
* Deletes an ESA channel
|
|
@@ -26195,7 +26195,7 @@ class EsaChannelService {
|
|
|
26195
26195
|
withCredentials: this.configuration.withCredentials,
|
|
26196
26196
|
observe: 'response'
|
|
26197
26197
|
};
|
|
26198
|
-
return this.http.request(RequestMethod$
|
|
26198
|
+
return this.http.request(RequestMethod$2s.Delete, path, requestOptions);
|
|
26199
26199
|
}
|
|
26200
26200
|
/**
|
|
26201
26201
|
* Edits an ESA channel
|
|
@@ -26252,7 +26252,7 @@ class EsaChannelService {
|
|
|
26252
26252
|
withCredentials: this.configuration.withCredentials,
|
|
26253
26253
|
observe: 'response'
|
|
26254
26254
|
};
|
|
26255
|
-
return this.http.request(RequestMethod$
|
|
26255
|
+
return this.http.request(RequestMethod$2s.Put, path, requestOptions);
|
|
26256
26256
|
}
|
|
26257
26257
|
/**
|
|
26258
26258
|
* Edits an ESA channel version for a specified ESA channel
|
|
@@ -26315,7 +26315,7 @@ class EsaChannelService {
|
|
|
26315
26315
|
withCredentials: this.configuration.withCredentials,
|
|
26316
26316
|
observe: 'response'
|
|
26317
26317
|
};
|
|
26318
|
-
return this.http.request(RequestMethod$
|
|
26318
|
+
return this.http.request(RequestMethod$2s.Put, path, requestOptions);
|
|
26319
26319
|
}
|
|
26320
26320
|
/**
|
|
26321
26321
|
* Retrieves an ESA channel
|
|
@@ -26367,7 +26367,7 @@ class EsaChannelService {
|
|
|
26367
26367
|
withCredentials: this.configuration.withCredentials,
|
|
26368
26368
|
observe: 'response'
|
|
26369
26369
|
};
|
|
26370
|
-
return this.http.request(RequestMethod$
|
|
26370
|
+
return this.http.request(RequestMethod$2s.Get, path, requestOptions);
|
|
26371
26371
|
}
|
|
26372
26372
|
/**
|
|
26373
26373
|
* Retrieves an ESA channel version for a specified ESA channel
|
|
@@ -26425,7 +26425,7 @@ class EsaChannelService {
|
|
|
26425
26425
|
withCredentials: this.configuration.withCredentials,
|
|
26426
26426
|
observe: 'response'
|
|
26427
26427
|
};
|
|
26428
|
-
return this.http.request(RequestMethod$
|
|
26428
|
+
return this.http.request(RequestMethod$2s.Get, path, requestOptions);
|
|
26429
26429
|
}
|
|
26430
26430
|
/**
|
|
26431
26431
|
* Retrieves all ESA channel version for a specified ESA channel
|
|
@@ -26477,7 +26477,7 @@ class EsaChannelService {
|
|
|
26477
26477
|
withCredentials: this.configuration.withCredentials,
|
|
26478
26478
|
observe: 'response'
|
|
26479
26479
|
};
|
|
26480
|
-
return this.http.request(RequestMethod$
|
|
26480
|
+
return this.http.request(RequestMethod$2s.Get, path, requestOptions);
|
|
26481
26481
|
}
|
|
26482
26482
|
/**
|
|
26483
26483
|
* Retrieves a filtered list of ESA Channels.
|
|
@@ -26539,7 +26539,7 @@ class EsaChannelService {
|
|
|
26539
26539
|
withCredentials: this.configuration.withCredentials,
|
|
26540
26540
|
observe: 'response'
|
|
26541
26541
|
};
|
|
26542
|
-
return this.http.request(RequestMethod$
|
|
26542
|
+
return this.http.request(RequestMethod$2s.Get, path, requestOptions);
|
|
26543
26543
|
}
|
|
26544
26544
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaChannelService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
26545
26545
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaChannelService });
|
|
@@ -26567,7 +26567,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
26567
26567
|
* Do not edit the class manually.
|
|
26568
26568
|
*/
|
|
26569
26569
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
26570
|
-
const RequestMethod$
|
|
26570
|
+
const RequestMethod$2r = {
|
|
26571
26571
|
Get: 'get',
|
|
26572
26572
|
Post: 'post',
|
|
26573
26573
|
Put: 'put',
|
|
@@ -26863,7 +26863,7 @@ class EsaPlaceService {
|
|
|
26863
26863
|
withCredentials: this.configuration.withCredentials,
|
|
26864
26864
|
observe: 'response'
|
|
26865
26865
|
};
|
|
26866
|
-
return this.http.request(RequestMethod$
|
|
26866
|
+
return this.http.request(RequestMethod$2r.Put, path, requestOptions);
|
|
26867
26867
|
}
|
|
26868
26868
|
/**
|
|
26869
26869
|
* Creates an ESA place
|
|
@@ -26914,7 +26914,7 @@ class EsaPlaceService {
|
|
|
26914
26914
|
withCredentials: this.configuration.withCredentials,
|
|
26915
26915
|
observe: 'response'
|
|
26916
26916
|
};
|
|
26917
|
-
return this.http.request(RequestMethod$
|
|
26917
|
+
return this.http.request(RequestMethod$2r.Post, path, requestOptions);
|
|
26918
26918
|
}
|
|
26919
26919
|
/**
|
|
26920
26920
|
* Deletes an ESA place
|
|
@@ -26964,7 +26964,7 @@ class EsaPlaceService {
|
|
|
26964
26964
|
withCredentials: this.configuration.withCredentials,
|
|
26965
26965
|
observe: 'response'
|
|
26966
26966
|
};
|
|
26967
|
-
return this.http.request(RequestMethod$
|
|
26967
|
+
return this.http.request(RequestMethod$2r.Delete, path, requestOptions);
|
|
26968
26968
|
}
|
|
26969
26969
|
/**
|
|
26970
26970
|
* Edits an ESA place
|
|
@@ -27021,7 +27021,7 @@ class EsaPlaceService {
|
|
|
27021
27021
|
withCredentials: this.configuration.withCredentials,
|
|
27022
27022
|
observe: 'response'
|
|
27023
27023
|
};
|
|
27024
|
-
return this.http.request(RequestMethod$
|
|
27024
|
+
return this.http.request(RequestMethod$2r.Put, path, requestOptions);
|
|
27025
27025
|
}
|
|
27026
27026
|
/**
|
|
27027
27027
|
* Manages the schedules of a place
|
|
@@ -27078,7 +27078,7 @@ class EsaPlaceService {
|
|
|
27078
27078
|
withCredentials: this.configuration.withCredentials,
|
|
27079
27079
|
observe: 'response'
|
|
27080
27080
|
};
|
|
27081
|
-
return this.http.request(RequestMethod$
|
|
27081
|
+
return this.http.request(RequestMethod$2r.Put, path, requestOptions);
|
|
27082
27082
|
}
|
|
27083
27083
|
/**
|
|
27084
27084
|
* Manages the version history for a single ESA place. This endpoint handles Creating, Editing, and Deleting place sizes for ESA places in bulk.
|
|
@@ -27135,7 +27135,7 @@ class EsaPlaceService {
|
|
|
27135
27135
|
withCredentials: this.configuration.withCredentials,
|
|
27136
27136
|
observe: 'response'
|
|
27137
27137
|
};
|
|
27138
|
-
return this.http.request(RequestMethod$
|
|
27138
|
+
return this.http.request(RequestMethod$2r.Put, path, requestOptions);
|
|
27139
27139
|
}
|
|
27140
27140
|
/**
|
|
27141
27141
|
* Retrieves an ESA place by place ID
|
|
@@ -27187,7 +27187,7 @@ class EsaPlaceService {
|
|
|
27187
27187
|
withCredentials: this.configuration.withCredentials,
|
|
27188
27188
|
observe: 'response'
|
|
27189
27189
|
};
|
|
27190
|
-
return this.http.request(RequestMethod$
|
|
27190
|
+
return this.http.request(RequestMethod$2r.Get, path, requestOptions);
|
|
27191
27191
|
}
|
|
27192
27192
|
/**
|
|
27193
27193
|
* Retrieves the current sizes of all of an ESA place's children. If a place has no children, nothing is returned.
|
|
@@ -27239,7 +27239,7 @@ class EsaPlaceService {
|
|
|
27239
27239
|
withCredentials: this.configuration.withCredentials,
|
|
27240
27240
|
observe: 'response'
|
|
27241
27241
|
};
|
|
27242
|
-
return this.http.request(RequestMethod$
|
|
27242
|
+
return this.http.request(RequestMethod$2r.Get, path, requestOptions);
|
|
27243
27243
|
}
|
|
27244
27244
|
/**
|
|
27245
27245
|
* Gets the schedules of a place
|
|
@@ -27291,7 +27291,7 @@ class EsaPlaceService {
|
|
|
27291
27291
|
withCredentials: this.configuration.withCredentials,
|
|
27292
27292
|
observe: 'response'
|
|
27293
27293
|
};
|
|
27294
|
-
return this.http.request(RequestMethod$
|
|
27294
|
+
return this.http.request(RequestMethod$2r.Get, path, requestOptions);
|
|
27295
27295
|
}
|
|
27296
27296
|
/**
|
|
27297
27297
|
* Retrieves the entire size history of an ESA place by ID
|
|
@@ -27343,7 +27343,7 @@ class EsaPlaceService {
|
|
|
27343
27343
|
withCredentials: this.configuration.withCredentials,
|
|
27344
27344
|
observe: 'response'
|
|
27345
27345
|
};
|
|
27346
|
-
return this.http.request(RequestMethod$
|
|
27346
|
+
return this.http.request(RequestMethod$2r.Get, path, requestOptions);
|
|
27347
27347
|
}
|
|
27348
27348
|
/**
|
|
27349
27349
|
* Retrieves all ESA places
|
|
@@ -27401,7 +27401,7 @@ class EsaPlaceService {
|
|
|
27401
27401
|
withCredentials: this.configuration.withCredentials,
|
|
27402
27402
|
observe: 'response'
|
|
27403
27403
|
};
|
|
27404
|
-
return this.http.request(RequestMethod$
|
|
27404
|
+
return this.http.request(RequestMethod$2r.Get, path, requestOptions);
|
|
27405
27405
|
}
|
|
27406
27406
|
/**
|
|
27407
27407
|
* Move list of places to be under a parent place
|
|
@@ -27458,7 +27458,7 @@ class EsaPlaceService {
|
|
|
27458
27458
|
withCredentials: this.configuration.withCredentials,
|
|
27459
27459
|
observe: 'response'
|
|
27460
27460
|
};
|
|
27461
|
-
return this.http.request(RequestMethod$
|
|
27461
|
+
return this.http.request(RequestMethod$2r.Put, path, requestOptions);
|
|
27462
27462
|
}
|
|
27463
27463
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaPlaceService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
27464
27464
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaPlaceService });
|
|
@@ -27486,7 +27486,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
27486
27486
|
* Do not edit the class manually.
|
|
27487
27487
|
*/
|
|
27488
27488
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
27489
|
-
const RequestMethod$
|
|
27489
|
+
const RequestMethod$2q = {
|
|
27490
27490
|
Get: 'get',
|
|
27491
27491
|
Post: 'post',
|
|
27492
27492
|
Put: 'put',
|
|
@@ -27705,7 +27705,7 @@ class EsaReadingService {
|
|
|
27705
27705
|
withCredentials: this.configuration.withCredentials,
|
|
27706
27706
|
observe: 'response'
|
|
27707
27707
|
};
|
|
27708
|
-
return this.http.request(RequestMethod$
|
|
27708
|
+
return this.http.request(RequestMethod$2q.Post, path, requestOptions);
|
|
27709
27709
|
}
|
|
27710
27710
|
/**
|
|
27711
27711
|
* Deletes existing channel readings. Each set of meter readings to be deleted is on one channel and covers a time range signified by a begin and end date and time. The time range includes all readings greater than the begin time and less than or equal to the end date and time. To delete only one reading, set the begin and end date and time to the same value.
|
|
@@ -27756,7 +27756,7 @@ class EsaReadingService {
|
|
|
27756
27756
|
withCredentials: this.configuration.withCredentials,
|
|
27757
27757
|
observe: 'response'
|
|
27758
27758
|
};
|
|
27759
|
-
return this.http.request(RequestMethod$
|
|
27759
|
+
return this.http.request(RequestMethod$2q.Post, path, requestOptions);
|
|
27760
27760
|
}
|
|
27761
27761
|
/**
|
|
27762
27762
|
* Deletes existing summarized readings. Each set of meter readings to be deleted is on one channel and covers a time range signified by a begin and end date and time. The time range includes all readings greater than the begin time and less than or equal to the end date and time. To delete only one reading, set the begin and end date and time to the same value. If the summarized reading is system-generated, the endpoint will return an error indicating that it cannot be deleted.
|
|
@@ -27807,7 +27807,7 @@ class EsaReadingService {
|
|
|
27807
27807
|
withCredentials: this.configuration.withCredentials,
|
|
27808
27808
|
observe: 'response'
|
|
27809
27809
|
};
|
|
27810
|
-
return this.http.request(RequestMethod$
|
|
27810
|
+
return this.http.request(RequestMethod$2q.Post, path, requestOptions);
|
|
27811
27811
|
}
|
|
27812
27812
|
/**
|
|
27813
27813
|
* Retrieves all raw and processed ESA readings
|
|
@@ -27869,7 +27869,7 @@ class EsaReadingService {
|
|
|
27869
27869
|
withCredentials: this.configuration.withCredentials,
|
|
27870
27870
|
observe: 'response'
|
|
27871
27871
|
};
|
|
27872
|
-
return this.http.request(RequestMethod$
|
|
27872
|
+
return this.http.request(RequestMethod$2q.Get, path, requestOptions);
|
|
27873
27873
|
}
|
|
27874
27874
|
/**
|
|
27875
27875
|
* Retrieves all summarized ESA readings
|
|
@@ -27931,7 +27931,7 @@ class EsaReadingService {
|
|
|
27931
27931
|
withCredentials: this.configuration.withCredentials,
|
|
27932
27932
|
observe: 'response'
|
|
27933
27933
|
};
|
|
27934
|
-
return this.http.request(RequestMethod$
|
|
27934
|
+
return this.http.request(RequestMethod$2q.Get, path, requestOptions);
|
|
27935
27935
|
}
|
|
27936
27936
|
/**
|
|
27937
27937
|
* Retrieves all summarized ESA readings and exports them as a CSV file. File contents can be filtered and ordered.
|
|
@@ -27985,7 +27985,7 @@ class EsaReadingService {
|
|
|
27985
27985
|
withCredentials: this.configuration.withCredentials,
|
|
27986
27986
|
observe: 'response'
|
|
27987
27987
|
};
|
|
27988
|
-
return this.http.request(RequestMethod$
|
|
27988
|
+
return this.http.request(RequestMethod$2q.Get, path, requestOptions);
|
|
27989
27989
|
}
|
|
27990
27990
|
/**
|
|
27991
27991
|
* Creates and Edits summarized readings for a datapoint and channel
|
|
@@ -28036,7 +28036,7 @@ class EsaReadingService {
|
|
|
28036
28036
|
withCredentials: this.configuration.withCredentials,
|
|
28037
28037
|
observe: 'response'
|
|
28038
28038
|
};
|
|
28039
|
-
return this.http.request(RequestMethod$
|
|
28039
|
+
return this.http.request(RequestMethod$2q.Post, path, requestOptions);
|
|
28040
28040
|
}
|
|
28041
28041
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaReadingService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
28042
28042
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaReadingService });
|
|
@@ -28052,6 +28052,149 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
28052
28052
|
type: Optional
|
|
28053
28053
|
}] }] });
|
|
28054
28054
|
|
|
28055
|
+
/**
|
|
28056
|
+
* EnergyCAP SDK
|
|
28057
|
+
* Document used to generate the EnergyCAP SDK
|
|
28058
|
+
*
|
|
28059
|
+
* OpenAPI spec version: 8.2605
|
|
28060
|
+
* Contact: support@energycap.com
|
|
28061
|
+
*
|
|
28062
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
28063
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
28064
|
+
* Do not edit the class manually.
|
|
28065
|
+
*/
|
|
28066
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
28067
|
+
const RequestMethod$2p = {
|
|
28068
|
+
Get: 'get',
|
|
28069
|
+
Post: 'post',
|
|
28070
|
+
Put: 'put',
|
|
28071
|
+
Delete: 'delete',
|
|
28072
|
+
Options: 'options',
|
|
28073
|
+
Head: 'head',
|
|
28074
|
+
Patch: 'patch'
|
|
28075
|
+
};
|
|
28076
|
+
class EsaReadingNoteService {
|
|
28077
|
+
http;
|
|
28078
|
+
basePath = 'https://localhost';
|
|
28079
|
+
defaultHeaders = new HttpHeaders();
|
|
28080
|
+
configuration = new Configuration();
|
|
28081
|
+
constructor(http, basePath, configuration) {
|
|
28082
|
+
this.http = http;
|
|
28083
|
+
if (basePath) {
|
|
28084
|
+
this.basePath = basePath;
|
|
28085
|
+
}
|
|
28086
|
+
if (configuration) {
|
|
28087
|
+
this.configuration = configuration;
|
|
28088
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
28089
|
+
}
|
|
28090
|
+
}
|
|
28091
|
+
/**
|
|
28092
|
+
*
|
|
28093
|
+
* Extends object by coping non-existing properties.
|
|
28094
|
+
* @param objA object to be extended
|
|
28095
|
+
* @param objB source object
|
|
28096
|
+
*/
|
|
28097
|
+
extendObj(objA, objB) {
|
|
28098
|
+
for (let key in objB) {
|
|
28099
|
+
if (objB.hasOwnProperty(key)) {
|
|
28100
|
+
objA[key] = objB[key];
|
|
28101
|
+
}
|
|
28102
|
+
}
|
|
28103
|
+
return objA;
|
|
28104
|
+
}
|
|
28105
|
+
/**
|
|
28106
|
+
* @param consumes string[] mime-types
|
|
28107
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
28108
|
+
*/
|
|
28109
|
+
canConsumeForm(consumes) {
|
|
28110
|
+
const form = 'multipart/form-data';
|
|
28111
|
+
for (let consume of consumes) {
|
|
28112
|
+
if (form === consume) {
|
|
28113
|
+
return true;
|
|
28114
|
+
}
|
|
28115
|
+
}
|
|
28116
|
+
return false;
|
|
28117
|
+
}
|
|
28118
|
+
/**
|
|
28119
|
+
* Retrieves reading notes grouped by day interval, filtered by channel, meter, and/or reading date (localDate)
|
|
28120
|
+
*
|
|
28121
|
+
* @param filter
|
|
28122
|
+
*/
|
|
28123
|
+
getEsaReadingNotesByInterval(filter, extraHttpRequestParams, extraHttpRequestHeaders) {
|
|
28124
|
+
return this.getEsaReadingNotesByIntervalWithHttpInfo(filter, extraHttpRequestParams, extraHttpRequestHeaders)
|
|
28125
|
+
.pipe(map((response) => {
|
|
28126
|
+
if (response.status === 204) {
|
|
28127
|
+
return undefined;
|
|
28128
|
+
}
|
|
28129
|
+
else {
|
|
28130
|
+
return response.body;
|
|
28131
|
+
}
|
|
28132
|
+
}));
|
|
28133
|
+
}
|
|
28134
|
+
/**
|
|
28135
|
+
* Retrieves reading notes grouped by day interval, filtered by channel, meter, and/or reading date (localDate)
|
|
28136
|
+
*
|
|
28137
|
+
* @param filter
|
|
28138
|
+
*/
|
|
28139
|
+
getEsaReadingNotesByIntervalWithHttpInfo(filter, extraHttpRequestParams, extraHttpRequestHeaders) {
|
|
28140
|
+
const path = this.basePath + '/api/v202604/esaReadingNote/byInterval';
|
|
28141
|
+
let queryParameters;
|
|
28142
|
+
if (extraHttpRequestParams) {
|
|
28143
|
+
if (typeof extraHttpRequestParams.search === 'string') {
|
|
28144
|
+
queryParameters = new HttpParams({ fromString: extraHttpRequestParams.search });
|
|
28145
|
+
}
|
|
28146
|
+
else {
|
|
28147
|
+
queryParameters = new HttpParams({ fromObject: extraHttpRequestParams.search });
|
|
28148
|
+
}
|
|
28149
|
+
}
|
|
28150
|
+
else {
|
|
28151
|
+
queryParameters = new HttpParams();
|
|
28152
|
+
}
|
|
28153
|
+
let headers = new HttpHeaders();
|
|
28154
|
+
this.defaultHeaders.keys().forEach(key => {
|
|
28155
|
+
headers = headers.set(key, this.defaultHeaders.getAll(key));
|
|
28156
|
+
});
|
|
28157
|
+
if (extraHttpRequestHeaders) {
|
|
28158
|
+
Object.entries(extraHttpRequestHeaders).forEach(([key, value]) => {
|
|
28159
|
+
headers = headers.set(key, value);
|
|
28160
|
+
});
|
|
28161
|
+
}
|
|
28162
|
+
if (filter !== undefined) {
|
|
28163
|
+
queryParameters = queryParameters.set('filter', filter);
|
|
28164
|
+
}
|
|
28165
|
+
// to determine the Accept header
|
|
28166
|
+
let produces = [
|
|
28167
|
+
'application/json'
|
|
28168
|
+
];
|
|
28169
|
+
if (this.configuration.apiKeys["Authorization"]) {
|
|
28170
|
+
headers = headers.set('Authorization', this.configuration.apiKeys["Authorization"]);
|
|
28171
|
+
}
|
|
28172
|
+
if (this.configuration.apiKeys["ECI-PUBLIC-DASHBOARD-KEY"]) {
|
|
28173
|
+
headers = headers.set('ECI-PUBLIC-DASHBOARD-KEY', this.configuration.apiKeys["ECI-PUBLIC-DASHBOARD-KEY"]);
|
|
28174
|
+
}
|
|
28175
|
+
const consumes = [];
|
|
28176
|
+
let requestOptions = {
|
|
28177
|
+
headers: headers,
|
|
28178
|
+
params: queryParameters,
|
|
28179
|
+
withCredentials: this.configuration.withCredentials,
|
|
28180
|
+
observe: 'response'
|
|
28181
|
+
};
|
|
28182
|
+
return this.http.request(RequestMethod$2p.Get, path, requestOptions);
|
|
28183
|
+
}
|
|
28184
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaReadingNoteService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
28185
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaReadingNoteService });
|
|
28186
|
+
}
|
|
28187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EsaReadingNoteService, decorators: [{
|
|
28188
|
+
type: Injectable
|
|
28189
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
28190
|
+
type: Optional
|
|
28191
|
+
}, {
|
|
28192
|
+
type: Inject,
|
|
28193
|
+
args: [BASE_PATH]
|
|
28194
|
+
}] }, { type: Configuration, decorators: [{
|
|
28195
|
+
type: Optional
|
|
28196
|
+
}] }] });
|
|
28197
|
+
|
|
28055
28198
|
/**
|
|
28056
28199
|
* EnergyCAP SDK
|
|
28057
28200
|
* Document used to generate the EnergyCAP SDK
|
|
@@ -135173,7 +135316,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
135173
135316
|
type: Optional
|
|
135174
135317
|
}] }] });
|
|
135175
135318
|
|
|
135176
|
-
const APIS = [AccountService, AccountDigestService, AccountMeterService, AccrualService, ActivityService, AdminService, ApiService, ApiKeyService, AuditService, AuthenticationService, BatchService, BillService, BillAccountChargeSplitService, BillImportRuleService, BillSplitService, BillViewService, BudgetService, CalculatedBillService, ChannelService, ChargebackEngineService, ChargebackTaskService, ChargebackWorkflowService, CollectionService, CommodityService, CommodityCategoryService, CommodityDigestService, CostCategoryService, CostCenterService, CostCenterDigestService, CountryService, CustomerService, DashboardService, DataPointService, EUIGoalService, EmissionRecordService, EmissionSourceService, EnergyProjectService, EnergyStarService, EnvironmentService, EsaChannelService, EsaPlaceService, EsaReadingService, ExportService, FileStoreService, FilterService, FlagService, FormulaService, GHGService, GeneralLedgerService, HierarchyService, ImportService, ListService, MeService, MeterService, MeterDigestService, MeterGroupService, MeterGroupDigestService, NotificationService, ObservationService, ObservationTypeService, PlaceService, PlaceBenchmarkService, PlaceDigestService, PlaceGroupService, PlaceGroupDigestService, PostalCodeService, PrimaryUseService, RateService, RateDigestService, ReportService, ReportBuilderService, ReportDistributionService, RouteService, SavingsService, ScheduleService, SearchService, SentinelService, SetupService, SummaryAccountService, SystemUserService, TagService, TaskService, TemplateService, TimeZoneService, UDFService, UnitService, UserGroupService, UserRoleService, UtilityPlatformService, VendorService, VendorDigestService, WattsService, WeatherStationService, WebCaptureCredentialService, WebhookService, WidgetService, WorkflowService, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService];
|
|
135319
|
+
const APIS = [AccountService, AccountDigestService, AccountMeterService, AccrualService, ActivityService, AdminService, ApiService, ApiKeyService, AuditService, AuthenticationService, BatchService, BillService, BillAccountChargeSplitService, BillImportRuleService, BillSplitService, BillViewService, BudgetService, CalculatedBillService, ChannelService, ChargebackEngineService, ChargebackTaskService, ChargebackWorkflowService, CollectionService, CommodityService, CommodityCategoryService, CommodityDigestService, CostCategoryService, CostCenterService, CostCenterDigestService, CountryService, CustomerService, DashboardService, DataPointService, EUIGoalService, EmissionRecordService, EmissionSourceService, EnergyProjectService, EnergyStarService, EnvironmentService, EsaChannelService, EsaPlaceService, EsaReadingService, EsaReadingNoteService, ExportService, FileStoreService, FilterService, FlagService, FormulaService, GHGService, GeneralLedgerService, HierarchyService, ImportService, ListService, MeService, MeterService, MeterDigestService, MeterGroupService, MeterGroupDigestService, NotificationService, ObservationService, ObservationTypeService, PlaceService, PlaceBenchmarkService, PlaceDigestService, PlaceGroupService, PlaceGroupDigestService, PostalCodeService, PrimaryUseService, RateService, RateDigestService, ReportService, ReportBuilderService, ReportDistributionService, RouteService, SavingsService, ScheduleService, SearchService, SentinelService, SetupService, SummaryAccountService, SystemUserService, TagService, TaskService, TemplateService, TimeZoneService, UDFService, UnitService, UserGroupService, UserRoleService, UtilityPlatformService, VendorService, VendorDigestService, WattsService, WeatherStationService, WebCaptureCredentialService, WebhookService, WidgetService, WorkflowService, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService];
|
|
135177
135320
|
|
|
135178
135321
|
/**
|
|
135179
135322
|
* EnergyCAP SDK
|
|
@@ -151380,6 +151523,10 @@ class EnergyProjectCreate {
|
|
|
151380
151523
|
* The cost savings unit code
|
|
151381
151524
|
*/
|
|
151382
151525
|
costSavingsUnitCode;
|
|
151526
|
+
/**
|
|
151527
|
+
* The expected impact of the energy project (positive, negative, unknown) <span class='property-internal'>One of 'positive', 'negative', 'unknown'</span>
|
|
151528
|
+
*/
|
|
151529
|
+
expectedImpact;
|
|
151383
151530
|
}
|
|
151384
151531
|
|
|
151385
151532
|
/**
|
|
@@ -151454,6 +151601,10 @@ class EnergyProjectEdit {
|
|
|
151454
151601
|
* The cost savings unit code <span class='property-internal'>Required (defined)</span>
|
|
151455
151602
|
*/
|
|
151456
151603
|
costSavingsUnitCode;
|
|
151604
|
+
/**
|
|
151605
|
+
* The expected impact of the energy project (positive, negative, unknown) <span class='property-internal'>One of 'positive', 'negative', 'unknown'</span> <span class='property-internal'>Required (defined)</span>
|
|
151606
|
+
*/
|
|
151607
|
+
expectedImpact;
|
|
151457
151608
|
}
|
|
151458
151609
|
|
|
151459
151610
|
/**
|
|
@@ -151538,6 +151689,10 @@ class EnergyProjectResponse {
|
|
|
151538
151689
|
* The miscellaneous note about the project
|
|
151539
151690
|
*/
|
|
151540
151691
|
note;
|
|
151692
|
+
/**
|
|
151693
|
+
* The expected impact of the energy project (positive, negative, unknown)
|
|
151694
|
+
*/
|
|
151695
|
+
expectedImpact;
|
|
151541
151696
|
energySavings;
|
|
151542
151697
|
costSavings;
|
|
151543
151698
|
place;
|
|
@@ -153736,6 +153891,81 @@ class EsaReadingImportRequest {
|
|
|
153736
153891
|
})(CompleteWithErrorsNotificationTypeEnum = EsaReadingImportRequest.CompleteWithErrorsNotificationTypeEnum || (EsaReadingImportRequest.CompleteWithErrorsNotificationTypeEnum = {}));
|
|
153737
153892
|
})(EsaReadingImportRequest || (EsaReadingImportRequest = {}));
|
|
153738
153893
|
|
|
153894
|
+
/**
|
|
153895
|
+
* EnergyCAP SDK
|
|
153896
|
+
* Document used to generate the EnergyCAP SDK
|
|
153897
|
+
*
|
|
153898
|
+
* OpenAPI spec version: 8.2605
|
|
153899
|
+
* Contact: support@energycap.com
|
|
153900
|
+
*
|
|
153901
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
153902
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
153903
|
+
* Do not edit the class manually.
|
|
153904
|
+
*/
|
|
153905
|
+
class EsaReadingNoteByIntervalResponse {
|
|
153906
|
+
dateRange;
|
|
153907
|
+
/**
|
|
153908
|
+
* The interval in minutes used to group readings
|
|
153909
|
+
*/
|
|
153910
|
+
groupIntervalMinutes;
|
|
153911
|
+
/**
|
|
153912
|
+
* Reading notes grouped by day interval
|
|
153913
|
+
*/
|
|
153914
|
+
esaReadingNotesByInterval;
|
|
153915
|
+
}
|
|
153916
|
+
|
|
153917
|
+
/**
|
|
153918
|
+
* EnergyCAP SDK
|
|
153919
|
+
* Document used to generate the EnergyCAP SDK
|
|
153920
|
+
*
|
|
153921
|
+
* OpenAPI spec version: 8.2605
|
|
153922
|
+
* Contact: support@energycap.com
|
|
153923
|
+
*
|
|
153924
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
153925
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
153926
|
+
* Do not edit the class manually.
|
|
153927
|
+
*/
|
|
153928
|
+
class EsaReadingNoteIntervalItem {
|
|
153929
|
+
/**
|
|
153930
|
+
* The date of this interval group (e.g. \"2026-04-01 00:00:00\")
|
|
153931
|
+
*/
|
|
153932
|
+
date;
|
|
153933
|
+
/**
|
|
153934
|
+
* The reading notes within this interval
|
|
153935
|
+
*/
|
|
153936
|
+
esaReadingNotes;
|
|
153937
|
+
}
|
|
153938
|
+
|
|
153939
|
+
/**
|
|
153940
|
+
* EnergyCAP SDK
|
|
153941
|
+
* Document used to generate the EnergyCAP SDK
|
|
153942
|
+
*
|
|
153943
|
+
* OpenAPI spec version: 8.2605
|
|
153944
|
+
* Contact: support@energycap.com
|
|
153945
|
+
*
|
|
153946
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
153947
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
153948
|
+
* Do not edit the class manually.
|
|
153949
|
+
*/
|
|
153950
|
+
class EsaReadingNoteResponse {
|
|
153951
|
+
/**
|
|
153952
|
+
* The ESA channel ID
|
|
153953
|
+
*/
|
|
153954
|
+
esaChannelId;
|
|
153955
|
+
/**
|
|
153956
|
+
* The date and time of the reading note
|
|
153957
|
+
*/
|
|
153958
|
+
timestamp;
|
|
153959
|
+
/**
|
|
153960
|
+
* The note text
|
|
153961
|
+
*/
|
|
153962
|
+
note;
|
|
153963
|
+
/**
|
|
153964
|
+
* Indicates whether the note is for a summarized reading
|
|
153965
|
+
*/
|
|
153966
|
+
isSummarized;
|
|
153967
|
+
}
|
|
153968
|
+
|
|
153739
153969
|
/**
|
|
153740
153970
|
* EnergyCAP SDK
|
|
153741
153971
|
* Document used to generate the EnergyCAP SDK
|
|
@@ -179502,7 +179732,7 @@ class EnergyCapSdkModule {
|
|
|
179502
179732
|
}
|
|
179503
179733
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyCapSdkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
179504
179734
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.5", ngImport: i0, type: EnergyCapSdkModule, imports: [CommonModule] });
|
|
179505
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyCapSdkModule, providers: [provideHttpClient(withInterceptorsFromDi()), AccountService, AccountDigestService, AccountMeterService, AccrualService, ActivityService, AdminService, ApiService, ApiKeyService, AuditService, AuthenticationService, BatchService, BillService, BillAccountChargeSplitService, BillImportRuleService, BillSplitService, BillViewService, BudgetService, CalculatedBillService, ChannelService, ChargebackEngineService, ChargebackTaskService, ChargebackWorkflowService, CollectionService, CommodityService, CommodityCategoryService, CommodityDigestService, CostCategoryService, CostCenterService, CostCenterDigestService, CountryService, CustomerService, DashboardService, DataPointService, EUIGoalService, EmissionRecordService, EmissionSourceService, EnergyProjectService, EnergyStarService, EnvironmentService, EsaChannelService, EsaPlaceService, EsaReadingService, ExportService, FileStoreService, FilterService, FlagService, FormulaService, GHGService, GeneralLedgerService, HierarchyService, ImportService, ListService, MeService, MeterService, MeterDigestService, MeterGroupService, MeterGroupDigestService, NotificationService, ObservationService, ObservationTypeService, PlaceService, PlaceBenchmarkService, PlaceDigestService, PlaceGroupService, PlaceGroupDigestService, PostalCodeService, PrimaryUseService, RateService, RateDigestService, ReportService, ReportBuilderService, ReportDistributionService, RouteService, SavingsService, ScheduleService, SearchService, SentinelService, SetupService, SummaryAccountService, SystemUserService, TagService, TaskService, TemplateService, TimeZoneService, UDFService, UnitService, UserGroupService, UserRoleService, UtilityPlatformService, VendorService, VendorDigestService, WattsService, WeatherStationService, WebCaptureCredentialService, WebhookService, WidgetService, WorkflowService, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService], imports: [CommonModule] });
|
|
179735
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyCapSdkModule, providers: [provideHttpClient(withInterceptorsFromDi()), AccountService, AccountDigestService, AccountMeterService, AccrualService, ActivityService, AdminService, ApiService, ApiKeyService, AuditService, AuthenticationService, BatchService, BillService, BillAccountChargeSplitService, BillImportRuleService, BillSplitService, BillViewService, BudgetService, CalculatedBillService, ChannelService, ChargebackEngineService, ChargebackTaskService, ChargebackWorkflowService, CollectionService, CommodityService, CommodityCategoryService, CommodityDigestService, CostCategoryService, CostCenterService, CostCenterDigestService, CountryService, CustomerService, DashboardService, DataPointService, EUIGoalService, EmissionRecordService, EmissionSourceService, EnergyProjectService, EnergyStarService, EnvironmentService, EsaChannelService, EsaPlaceService, EsaReadingService, EsaReadingNoteService, ExportService, FileStoreService, FilterService, FlagService, FormulaService, GHGService, GeneralLedgerService, HierarchyService, ImportService, ListService, MeService, MeterService, MeterDigestService, MeterGroupService, MeterGroupDigestService, NotificationService, ObservationService, ObservationTypeService, PlaceService, PlaceBenchmarkService, PlaceDigestService, PlaceGroupService, PlaceGroupDigestService, PostalCodeService, PrimaryUseService, RateService, RateDigestService, ReportService, ReportBuilderService, ReportDistributionService, RouteService, SavingsService, ScheduleService, SearchService, SentinelService, SetupService, SummaryAccountService, SystemUserService, TagService, TaskService, TemplateService, TimeZoneService, UDFService, UnitService, UserGroupService, UserRoleService, UtilityPlatformService, VendorService, VendorDigestService, WattsService, WeatherStationService, WebCaptureCredentialService, WebhookService, WidgetService, WorkflowService, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService], imports: [CommonModule] });
|
|
179506
179736
|
}
|
|
179507
179737
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: EnergyCapSdkModule, decorators: [{
|
|
179508
179738
|
type: NgModule,
|
|
@@ -179510,7 +179740,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
179510
179740
|
imports: [CommonModule],
|
|
179511
179741
|
declarations: [],
|
|
179512
179742
|
exports: [],
|
|
179513
|
-
providers: [provideHttpClient(withInterceptorsFromDi()), AccountService, AccountDigestService, AccountMeterService, AccrualService, ActivityService, AdminService, ApiService, ApiKeyService, AuditService, AuthenticationService, BatchService, BillService, BillAccountChargeSplitService, BillImportRuleService, BillSplitService, BillViewService, BudgetService, CalculatedBillService, ChannelService, ChargebackEngineService, ChargebackTaskService, ChargebackWorkflowService, CollectionService, CommodityService, CommodityCategoryService, CommodityDigestService, CostCategoryService, CostCenterService, CostCenterDigestService, CountryService, CustomerService, DashboardService, DataPointService, EUIGoalService, EmissionRecordService, EmissionSourceService, EnergyProjectService, EnergyStarService, EnvironmentService, EsaChannelService, EsaPlaceService, EsaReadingService, ExportService, FileStoreService, FilterService, FlagService, FormulaService, GHGService, GeneralLedgerService, HierarchyService, ImportService, ListService, MeService, MeterService, MeterDigestService, MeterGroupService, MeterGroupDigestService, NotificationService, ObservationService, ObservationTypeService, PlaceService, PlaceBenchmarkService, PlaceDigestService, PlaceGroupService, PlaceGroupDigestService, PostalCodeService, PrimaryUseService, RateService, RateDigestService, ReportService, ReportBuilderService, ReportDistributionService, RouteService, SavingsService, ScheduleService, SearchService, SentinelService, SetupService, SummaryAccountService, SystemUserService, TagService, TaskService, TemplateService, TimeZoneService, UDFService, UnitService, UserGroupService, UserRoleService, UtilityPlatformService, VendorService, VendorDigestService, WattsService, WeatherStationService, WebCaptureCredentialService, WebhookService, WidgetService, WorkflowService, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService]
|
|
179743
|
+
providers: [provideHttpClient(withInterceptorsFromDi()), AccountService, AccountDigestService, AccountMeterService, AccrualService, ActivityService, AdminService, ApiService, ApiKeyService, AuditService, AuthenticationService, BatchService, BillService, BillAccountChargeSplitService, BillImportRuleService, BillSplitService, BillViewService, BudgetService, CalculatedBillService, ChannelService, ChargebackEngineService, ChargebackTaskService, ChargebackWorkflowService, CollectionService, CommodityService, CommodityCategoryService, CommodityDigestService, CostCategoryService, CostCenterService, CostCenterDigestService, CountryService, CustomerService, DashboardService, DataPointService, EUIGoalService, EmissionRecordService, EmissionSourceService, EnergyProjectService, EnergyStarService, EnvironmentService, EsaChannelService, EsaPlaceService, EsaReadingService, EsaReadingNoteService, ExportService, FileStoreService, FilterService, FlagService, FormulaService, GHGService, GeneralLedgerService, HierarchyService, ImportService, ListService, MeService, MeterService, MeterDigestService, MeterGroupService, MeterGroupDigestService, NotificationService, ObservationService, ObservationTypeService, PlaceService, PlaceBenchmarkService, PlaceDigestService, PlaceGroupService, PlaceGroupDigestService, PostalCodeService, PrimaryUseService, RateService, RateDigestService, ReportService, ReportBuilderService, ReportDistributionService, RouteService, SavingsService, ScheduleService, SearchService, SentinelService, SetupService, SummaryAccountService, SystemUserService, TagService, TaskService, TemplateService, TimeZoneService, UDFService, UnitService, UserGroupService, UserRoleService, UtilityPlatformService, VendorService, VendorDigestService, WattsService, WeatherStationService, WebCaptureCredentialService, WebhookService, WidgetService, WorkflowService, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService]
|
|
179514
179744
|
}]
|
|
179515
179745
|
}] });
|
|
179516
179746
|
|
|
@@ -179518,5 +179748,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
179518
179748
|
* Generated bundle index. Do not edit.
|
|
179519
179749
|
*/
|
|
179520
179750
|
|
|
179521
|
-
export { APIS, AbnormalBillCostWithOutlierAnalysisSettingRequest, AbnormalBillCostWithOutlierAnalysisSettingResponse, AbnormalBillDemandWithOutlierAnalysisSettingRequest, AbnormalBillDemandWithOutlierAnalysisSettingResponse, AbnormalBillUseWithOutlierAnalysisSettingRequest, AbnormalBillUseWithOutlierAnalysisSettingResponse, AccountAlertRequest, AccountAlertResponse, AccountAuditEnable, AccountAuditSettingsRequest, AccountAuditSettingsResponse, AccountBillAccountChargeSplitSettingsResponse, AccountChild, AccountChildWithType, AccountCodeHistoryChild, AccountCodeHistoryRequest, AccountCodeHistoryResponse, AccountConnectionStatusResponse, AccountCreate, AccountDigestActualMonthlyResponse, AccountDigestActualMonthlyResponseCommodityData, AccountDigestActualMonthlyResponseCommodityResults, AccountDigestActualMonthlyResponseResults, AccountDigestActualYearlyResponse, AccountDigestActualYearlyResponseCommodityData, AccountDigestActualYearlyResponseCommodityResults, AccountDigestActualYearlyResponseResults, AccountDigestService, AccountEdit, AccountMeterChild, AccountMeterChildWithSerialNumber, AccountMeterEdit, AccountMeterRateResponse, AccountMeterRequest, AccountMeterResponse, AccountMeterService, AccountOrMeterUsage, AccountPeriodRequest, AccountPeriodResponse, AccountRateChild, AccountRateRequest, AccountRateResponse, AccountResponse, AccountService, AccountTemplateResponse, AccountTypeChild, AccountUDFResponse, AccountingSettings, AccountingSettingsClassPermission, AccountingSettingsRequest, AccountingSettingsResponse, Accounts, AccountsClassPermission, AccountsModule, AccountsModuleActualData, AccountsModuleActualDataClassPermission, AccountsModuleClassPermission, AccrualProcessorRequest, AccrualService, AccrualSettings, AccrualSettingsClassPermission, AccrualSettingsResponse, ActionableBillCounts, Activity, ActivityService, ActualVsBudgetResponse, AddressChild, AddressChildBase, AddressLookup, AdjustedCostTypeResponse, AdjustmentBaseMethodChild, AdminService, AdminSettingsRequest, AdminSettingsResponse, AggregatedComparisonResponseGHGPerformanceComparison, AggregatedItemRankResponse, AggregatedMonthlyCAPTrendResponse, AggregatedResponseGHGBuildingRank, AggregatedResponseItemRankWithUnitResponse, AllInstalledReports, AllInstalledReportsClassPermission, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyEditRequest, ApiKeyResponse, ApiKeyService, ApiService, ApiUser, ApplicationSettings, ApplicationSettingsClassPermission, ApprovalWorkflowChild, ApprovalWorkflowRequestChild, ApprovalWorkflowSettings, ApproveBills, ApproveBillsClassPermission, ArcadiaAccount, ArcadiaAccountCustomData, ArcadiaProvider, AreaNormalizedResponse, AssignVersionsToStep, AucRangeRequest, AucRangeResponse, AuditService, AuditSettingRequest, AuditSettingResponse, AuditSettingsRequest, AuditSettingsResponse, AuthenticationService, BASE_PATH, BaselineEngine, BaselineEngineClassPermission, BaselineLog, BaselineProcessorRequest, BaselineProcessorRequestBaselineBill, BaselineProcessorResponse, BaselineProcessorResponseBaselineBill, BatchChild, BatchCreate, BatchEdit, BatchLogResponse, BatchResponse, BatchService, BatchSettings, BatchWorkflowChild, BatchWorkflowSettings, BenchmarkCategoryResponse, BenchmarkEdit, BenchmarkSettingsEdit, BenchmarkSettingsResponse, BenchmarkValue, BenchmarkValueRequest, BenchmarkValuesResponse, BenchmarkWithUsedCountResponse, BillAccountBodyLineCreate, BillAccountBodyLineEdit, BillAccountChargeSplitMethodRequest, BillAccountChargeSplitMethodResponse, BillAccountChargeSplitService, BillAccountChargeSplitSettingResponse, BillAccountChargeSplitSettingsResponse, BillAccountMeterChild, BillAccountMeterResponse, BillAccountMeterStatisticsResponse, BillAccrualExclusionRequest, BillActionApprove, BillActionCustom, BillActionDelete, BillActionExportHold, BillActionHeaderUpdate, BillActionHistoricalExport, BillActionMove, BillActionMoveList, BillActionSplit, BillActionVoid, BillCAPture, BillCAPtureClassPermission, BillCalendarizedHistory, BillContainsLineItemDescriptionsSettingRequest, BillContainsLineItemDescriptionsSettingResponse, BillContainsLineItemTypesSettingRequest, BillContainsLineItemTypesSettingResponse, BillCreate, BillDeleteActionResult, BillDescriptorJson, BillDescriptorJsonBillDescriptorChargeLineItem, BillDescriptorJsonBillDescriptorConfidence, BillDescriptorJsonBillDescriptorHeaderJson, BillDescriptorJsonBillDescriptorIdentifier, BillDescriptorJsonBillDescriptorMeterJson, BillDescriptorJsonBillDescriptorMeterLineItem, BillDescriptorJsonBillDescriptorProcessingError, BillEdit, BillEntryBodyLine, BillEntryBodyLineChild, BillEntryBodyLineWithNounChild, BillEntryMeterChild, BillEntryObservationTypeChild, BillEntryResponse, BillExport, BillExportOptions, BillHeaderChild, BillHeaderUpdate, BillHeaderUpdateAccountPeriodChild, BillHeaderUpdateBeginDateChild, BillHeaderUpdateBillingPeriodChild, BillHeaderUpdateControlCodeChild, BillHeaderUpdateDueDateChild, BillHeaderUpdateEndDateChild, BillHeaderUpdateEstimatedChild, BillHeaderUpdateInvoiceNumberChild, BillHeaderUpdateStatementDateChild, BillHeaderWorkflowChild, BillHistoryResponse, BillIdResponse, BillImportKickoutDetailsResponse, BillImportProfileColumnMapping, BillImportProfileObservation, BillImportProfileRequest, BillImportProfileResponse, BillImportRequest, BillImportRuleRequest, BillImportRuleResponse, BillImportRuleService, BillImportTaskKickoutSummaryResponse, BillImportWorkflowSettings, BillKickoutImportRequest, BillLineTypeMappingResponse, BillListAdministrator, BillListAdministratorClassPermission, BillMeterBodyLineCreate, BillMeterBodyLineEdit, BillMeterCreate, BillMeterEdit, BillPaymentDetailsFileResponse, BillPaymentDetailsOptionalItem, BillPaymentDetailsOptionalItemWithErrors, BillPaymentDetailsOptionalResponse, BillPaymentEventCreate, BillPaymentEventResponse, BillResponse, BillReversal, BillReversalRequest, BillService, BillSignificantlyShorterOrLongerThanPreviousSettingRequest, BillSignificantlyShorterOrLongerThanPreviousSettingResponse, BillSplitDetailsRequest, BillSplitDetailsResponse, BillSplitParentDetailsResponse, BillSplitPlaceSizeChild, BillSplitService, BillUnexport, BillUnexportOptions, BillUsage, BillViewAccountChild, BillViewAddressChild, BillViewMeterChild, BillViewResponse, BillViewService, BillViewVendorChild, BillWorkflowSettings, BillWorkflowSettingsClassPermission, BillingPeriodCostUnitChild, BillingPeriodCostUnitDeltaChild, BillingPeriodUseCostChild, BillingPeriodUseCostDeltaChild, BillingPeriodUseUnitChild, BillingPeriodUseUnitDeltaChild, BillsAndBatches, BillsAndBatchesClassPermission, BillsModule, BillsModuleClassPermission, BillsOverdueFromVendorResponse, BodylineChild, BodylineResponse, BudgetCreate, BudgetDataType, BudgetEdit, BudgetPeriodType, BudgetResponse, BudgetService, BudgetUsageMethod, BudgetVersionCreate, BudgetVersionEdit, BudgetVersionResponse, BudgetVersionSummary, BudgetVersionSummaryResponse, BudgetsAndBudgetVersions, BudgetsAndBudgetVersionsClassPermission, BuildingAndMeterGroups, BuildingAndMeterGroupsClassPermission, BuildingsAndMetersModule, BuildingsAndMetersModuleActualData, BuildingsAndMetersModuleActualDataClassPermission, BuildingsAndMetersModuleBudgets, BuildingsAndMetersModuleBudgetsClassPermission, BuildingsAndMetersModuleCalendarizedData, BuildingsAndMetersModuleCalendarizedDataClassPermission, BuildingsAndMetersModuleClassPermission, BuildingsAndMetersModuleMeterIntervalData, BuildingsAndMetersModuleMeterIntervalDataClassPermission, BuildingsAndMetersModuleNormalizedData, BuildingsAndMetersModuleNormalizedDataClassPermission, BuildingsAndMetersModuleSavings, BuildingsAndMetersModuleSavingsClassPermission, BuildingsAndMetersModuleSustainability, BuildingsAndMetersModuleSustainabilityClassPermission, BuildingsAndOrganizations, BuildingsAndOrganizationsClassPermission, BulkBaselineProcessorRequest, BulkImportArcadiaCredentialRequest, BulkImportArcadiaCredentialsResponse, BulkMeterCostAvoidanceSettings, COLLECTION_FORMATS, CalculateSavingsRequest, CalculatedBillCostRequest, CalculatedBillCostResponse, CalculatedBillDemandRequest, CalculatedBillDemandResponse, CalculatedBillDetailsResponse, CalculatedBillService, CalculatedBillUseRequest, CalculatedBillUseResponse, CalculationRequest, CalculationResponse, CalendarizedCalculationRequest, CalendarizedCalculationResponse, CalendarizedSumRequest, CancellationToken, ChannelChild, ChannelChildWithObservationType, ChannelCreate, ChannelEdit, ChannelLatestReading, ChannelResponse, ChannelService, ChannelVersionRequest, ChannelVersionResponse, ChannelVersionWithBeginDateRequest, ChargebackEngineService, ChargebackProcessorSettings, ChargebackProcessorSettingsForAggregations, ChargebackProcessorSettingsForSplits, ChargebackProcessorSettingsWithoutFilters, ChargebackReversals, ChargebackReversalsClassPermission, ChargebackTaskRequest, ChargebackTaskResponse, ChargebackTaskService, ChargebackTaskVersionResponse, ChargebackWorkflowBase, ChargebackWorkflowCreate, ChargebackWorkflowDigestChild, ChargebackWorkflowDigestResponse, ChargebackWorkflowDigestSplitChild, ChargebackWorkflowEdit, ChargebackWorkflowResponse, ChargebackWorkflowService, ChargebackWorkflowSettings, ChargebackWorkflowStep, ChargebackWorkflowStepChild, ChargebackWorkflowStepCreate, ChargebackWorkflowStepEdit, Chargebacks, ChargebacksClassPermission, ChargebacksModule, ChargebacksModuleClassPermission, Claim, CollectionChild, CollectionEmissionSourceChild, CollectionRequest, CollectionResponse, CollectionService, Collections, CollectionsClassPermission, ColumnNumberOrOverrideValueNullableInt32, ColumnNumberOrOverrideValueString, CommodityCategory, CommodityCategoryChild, CommodityCategoryRequest, CommodityCategoryResponse, CommodityCategoryService, CommodityChild, CommodityChildWithCategory, CommodityDigestActualYearlyResponse, CommodityDigestActualYearlyResponseCommodityData, CommodityDigestActualYearlyResponseCommodityResults, CommodityDigestActualYearlyResponseResults, CommodityDigestService, CommodityEditRequest, CommodityRequest, CommodityResponse, CommodityService, CommoditySkipAuditSettingRequest, CommoditySkipAuditSettingResponse, CommodityValueComparison, Configuration, ContactChild, CopyFromMeterResponse, CopyMeterRequest, CostAvoidanceSettings, CostAvoidanceTask, CostCategoryEdit, CostCategoryResponse, CostCategoryService, CostCenterAccountChild, CostCenterChild, CostCenterCreate, CostCenterDigestActualMonthlyResponse, CostCenterDigestActualMonthlyResponseCommodityData, CostCenterDigestActualMonthlyResponseCommodityResults, CostCenterDigestActualMonthlyResponseResults, CostCenterDigestActualYearlyResponse, CostCenterDigestActualYearlyResponseCommodityData, CostCenterDigestActualYearlyResponseCommodityResults, CostCenterDigestActualYearlyResponseResults, CostCenterDigestService, CostCenterResponse, CostCenterService, CostCenters, CostCentersClassPermission, CostConversion, CostConversionBase, CostSavingsChild, CostSavingsUnit, Country, CountryService, CreateTemplateFromBill, CreateUtilityPlatformMeter, CustomerChild, CustomerResponse, CustomerService, DashboardAdministrator, DashboardAdministratorClassPermission, DashboardAndMapsModule, DashboardAndMapsModuleClassPermission, DashboardCopy, DashboardCreate, DashboardEdit, DashboardGlobalSettings, DashboardGlobalSettingsEdit, DashboardResponse, DashboardService, DataAccessRelease, DataAccessReleaseMetaData, DataAccessReleaseNoFileRequest, DataAccessReleaseRequest, DataAccessReleaseState, DataAccessReleaseStatus, DataPointChild, DataPointChildWithParentAndImportId, DataPointCreate, DataPointEdit, DataPointResponse, DataPointSentinel, DataPointService, DataTypeResponse, DateRange, DayOfWeek, DeleteReadingResponse, DestinationAccountMeterChild, DestinationAccountResponse, DetailedGuidResponse, DistributeAccountChargesBase, DistributeAccountChargesToBillsRequest, DistributedReportsConfiguration, DistributedReportsSettings, DistributedReportsSettingsClassPermission, DistributionVersionManage, DistributionVersionResponse, DueDateTooLongAfterBillEndSettingRequest, DueDateTooLongAfterBillEndSettingResponse, DynamicListRequest, DynamicPercentageBillSplit, DynamicPercentageBillSplitResponse, ENERGYSTARSubmissions, ENERGYSTARSubmissionsClassPermission, EUIGoalEditRequest, EUIGoalMilestoneRequest, EUIGoalMilestoneResponse, EUIGoalPlaceData, EUIGoalResponse, EUIGoalService, EditEsaPlaceSizesRequest, EmailProperties, EmissionRecordRequest, EmissionRecordResponse, EmissionRecordService, EmissionRecordType, EmissionSourceChild, EmissionSourceCreate, EmissionSourceEdit, EmissionSourceFactorCategoryBulkUpdate, EmissionSourceLink, EmissionSourceLinkRequest, EmissionSourceMultiFactorCreate, EmissionSourceMultiFactorEdit, EmissionSourceMultiFactorResponse, EmissionSourceResponse, EmissionSourceService, EmissionsSources, EmissionsSourcesClassPermission, EmissionsSourcesModule, EmissionsSourcesModuleClassPermission, EnergyCapOptionsEnergyCapIDOptions, EnergyCapSdkModule, EnergyManagerModule, EnergyManagerModuleClassPermission, EnergyProjectCreate, EnergyProjectEdit, EnergyProjectPlaceChild, EnergyProjectResponse, EnergyProjectService, EnergyProjectType, EnergyProjectTypeCreate, EnergySavingsChild, EnergySavingsUnit, EnergyStarCommodityLinkChild, EnergyStarCommodityLinkRequest, EnergyStarCommodityMeterTypeMapping, EnergyStarCommodityMeterTypeMappingChild, EnergyStarMeterLinkChild, EnergyStarMeterLinkRequest, EnergyStarPlaceHierarchyResponse, EnergyStarPlaceLinkRequest, EnergyStarPlaceLinkResponse, EnergyStarPlaceMetricsRequest, EnergyStarPlaceMetricsResponse, EnergyStarPlaceSubmissionStatusChild, EnergyStarPlaceSubmissionStatusResponse, EnergyStarPmMeter, EnergyStarPmProperty, EnergyStarRatingChild, EnergyStarService, EnergyStarSettings, EnergyStarSettingsRequest, EnergyStarSettingsResponse, EnergyStarSubmissionPlaceChild, EnergyStarSubmissionRequest, EnergyStarTaskPlaceChild, EnergyStarTaskResponse, EntityScheduleSummary, Environment, EnvironmentService, EsaChannelChild, EsaChannelChildWithObservationType, EsaChannelCreate, EsaChannelEdit, EsaChannelResponse, EsaChannelService, EsaChannelVersionCreate, EsaChannelVersionCreateWithBeginDate, EsaChannelVersionEdit, EsaChannelVersionResponse, EsaDeleteReadingResponse, EsaDeleteReadingSummarizedResponse, EsaIntervalDataOverlay, EsaIntervalDataResponse, EsaPlaceCreate, EsaPlaceDataRollupRequest, EsaPlaceEdit, EsaPlaceResponse, EsaPlaceService, EsaPlaceSizeCreate, EsaReadingCreate, EsaReadingCreateError, EsaReadingCreateResponse, EsaReadingDelete, EsaReadingImportProfile, EsaReadingImportProfileColumn, EsaReadingImportProfileCreate, EsaReadingImportProfileEdit, EsaReadingImportProfileResponse, EsaReadingImportRequest, EsaReadingResponse, EsaReadingService, EsaReadingSummarizedDelete, EsaReadingSummarizedResponse, EsaReadingValue, EsaReadingValueError, EsaSentinelPrediction, EsaSentinelPredictionRequest, EsaSentinelPredictionResponse, EsaSentinelPredictionsResponse, Estimated, ExportBills, ExportBillsClassPermission, ExportFormatChild, ExportHold, ExportHoldClassPermission, ExportService, ExportWorkflowChild, ExportWorkflowSettings, FacilityProjects, FacilityProjectsClassPermission, FailedReadingResponse, FailedReadings, FileDataTypeResponse, FileStoreService, FilterDataResponse, FilterEdit, FilterResponse, FilterService, FixedAmountResponse, FixedDemandRequest, FixedPercentage, FixedPercentageResponse, FixedUnitCostRequest, FixedUseRequest, FlagActionChild, FlagEdit, FlagEventChild, FlagIssueActionChild, FlagIssueEdit, FlagIssueEditAction, FlagIssueEventChild, FlagIssueListAction, FlagIssueResponse, FlagIssueStatusChild, FlagIssueTypeChild, FlagListAction, FlagResponse, FlagService, FlagStatusChild, FlagTypeChild, FlagTypeCreate, FlagWidget, FlagWidgetChild, FlaggedItems, FlaggedItemsClassPermission, FloorAreaSplit, FloorAreaSplitResponse, FormTemplateChild, FormTemplateRequest, FormTemplateResponse, FormulaService, FormulaValidationRequest, FormulaValidationResponse, Frequency, GHGBuildingRank, GHGCarbonFootprintResponse, GHGDefaultFactor, GHGFactor, GHGFactorCategory, GHGFactorChild, GHGFactorRegion, GHGFactorResponse, GHGFactorVersionHistoryResponse, GHGFactorsResponse, GHGGas, GHGGroupEmissions, GHGPerformanceComparison, GHGScope, GHGScopeCategory, GHGScopeCategoryChild, GHGScopeResponse, GHGService, GHGSettingResponse, GHGSettings, GHGTargetEmissions, GHGTypeChild, GHGVersion, GHGYearlyEmissions, GHGasDefaultSettingRequest, GHGasDefaultSettingRequestCommodityChild, GHGasDefaultSettingRequestScopeCategoryAndFactorChild, GHGasDefaultSettingResponse, GHGasDefaultSettingResponseCommodityChild, GHGasFactorAndScopeCategoryPair, GHGasFactorAndScopeCategoryPairCreate, GHGasFactorChild, GHGasScopeCategoryChild, GLSubCodeChild, GLSubCodeChildRequest, GLSubcodeRequest, GLSubcodeResponse, GeneralLedgerChild, GeneralLedgerRequest, GeneralLedgerResponse, GeneralLedgerService, GenericBodylineRequest, GenericBodylineResponse, GenericCount, GlobalCostAvoidanceSettings, GlobalCostAvoidanceSettingsClassPermission, GreenhouseGasAdministrator, GreenhouseGasAdministratorClassPermission, GroupDisplaySetting, GroupMemberRequest, GroupMeterGroupResponse, GroupPlaceGroupMember, GroupPlaceGroupResponse, GroupsAndBenchmarksModule, GroupsAndBenchmarksModuleClassPermission, GuidResponse, HiddenRequest, HierarchicalCollections, HierarchicalCollections2, HierarchicalCostCenters, HierarchicalCostCenters2, HierarchicalDataPoint, HierarchicalEmissionSource, HierarchicalMeter, HierarchicalPlaces, HierarchicalPlaces2, HierarchicalSpaces, HierarchicalSpaces2, HierarchyService, HighPrecisionTimeSeriesValue, HighPrecisionValue, IActionResult, IGHGDefaultScopeCategoryAndFactor, IOutputFormatter, Icon, ImportService, IntervalData, IntervalDataAnalysis, IntervalDataAnalysisClassPermission, IntervalDataClassPermission, IntervalDataRollup, IntervalDataRollupClassPermission, ItemRankResponse, ItemRankWithUnitResponse, JsonBillExportAccount, JsonBillExportGeneralLedger, JsonBillExportLine, JsonBillExportMeter, JsonBillExportPlace, JsonBillExportResponse, JsonBillExportVendor, KickoutField, KickoutValue, LatestBenchmarkValue, LicenseFeatureAccountingExport, LicenseFeatureAccrualBills, LicenseFeatureBillCAPtureManagedServices, LicenseFeatureBillCapturePostPay, LicenseFeatureBillCapturePrePay, LicenseFeatureBudgets, LicenseFeatureCarbonHub, LicenseFeatureChargebacks, LicenseFeatureCostAvoidance, LicenseFeatureCustomBenchmarks, LicenseFeatureEnergyCAPPayments, LicenseFeatureGhg, LicenseFeatureGhgPremium, LicenseFeatureIntervalData, LicenseFeatureIntervalDataAnalysis, LicenseFeatureLegacyGHG, LicenseFeatureNonEnglishBills, LicenseFeatureReportDesigner, LicenseFeatureReportDistribution, LicenseFeatureUIDI, LicenseFeatureVendorManagementServices, LicenseFeatures, LicenseRequest, LicenseResponse, LicenseUsage, LinkSubAccountsFilters, LinkSubAccountsRequest, ListActionAccrualExclusion, ListActionApprove, ListActionCustom, ListActionExportHold, ListActionReverse, ListActionVoid, ListColumnEdit, ListCopy, ListCreate, ListCreateResponse, ListEdit, ListIds, ListResponse, ListResponseListField, ListResponseListItem, ListService, ListTypeChild, LoginRequest, LoginResponse, ManualAdjustmentRequest, ManuallyAdjustSavings, ManuallyAdjustSavingsClassPermission, ManufacturerChild, MapDashboardSettingsRequest, MapDashboardSettingsResponse, MapPlaceChild, MapWidgetResponse, Me, MeRequest, MeService, Message, MeterAccountChild, MeterActionCreateEmissionSource, MeterBillResponse, MeterCAPResponse, MeterCalendarizedUseVsWeatherResponse, MeterCategoryRequest, MeterCategoryResponse, MeterChild, MeterChildIncludeMeterImportIdAndRoute, MeterChildIncludePlace, MeterChildIncludePlaceAndSerialNumber, MeterChildIncludePlaceChannelLatestReading, MeterChildSearch, MeterCost, MeterCreate, MeterDigestActualAndCalendarizedMonthlyResponse, MeterDigestActualAndCalendarizedMonthlyResponseResults, MeterDigestActualAndCalendarizedYearlyResponse, MeterDigestActualAndCalendarizedYearlyResponseResults, MeterDigestCalendarizedTrendResponse, MeterDigestCalendarizedTrendResponseResults, MeterDigestNormalizedMonthlyResponse, MeterDigestNormalizedMonthlyResponseResults, MeterDigestNormalizedYearlyResponse, MeterDigestNormalizedYearlyResponseResults, MeterDigestSavingsMonthlyResponse, MeterDigestSavingsMonthlyResponseResults, MeterDigestSavingsYearlyResponse, MeterDigestSavingsYearlyResponseResults, MeterDigestService, MeterEdit, MeterGroupCategoryChild, MeterGroupChild, MeterGroupDigestChild, MeterGroupDigestDemandRankingChild, MeterGroupDigestDemandRankingResponse, MeterGroupDigestRankingChild, MeterGroupDigestRankingResponse, MeterGroupDigestService, MeterGroupMember, MeterGroupMemberChild, MeterGroupRequest, MeterGroupResponse, MeterGroupService, MeterLink, MeterLinkRequest, MeterRateResponse, MeterResponse, MeterSavingsSettings, MeterSavingsSettingsClassPermission, MeterSearchRequest, MeterSerialNumberHistoryChild, MeterSerialNumberHistoryRequest, MeterSerialNumberHistoryResponse, MeterService, MeterTemplateResponse, MeterTypeChild, MeterUDFResponse, Meters, MetersClassPermission, MissingBillWidget, ModelVoid, MonthlyCAPTrend, MonthlyTimeSeriesValue, MostRecentAggregate, MoveAccountsBetweenVendors, MoveAccountsBetweenVendorsClassPermission, MoveBillsDestination, MoveCreateMeter, MoveExistingBills, MoveExistingBillsClassPermission, NamedPeriod, NormalizationSettings, NormalizationSettingsClassPermission, NotificationActionButtonResponse, NotificationBadgeResponse, NotificationCategory, NotificationDetailsResponse, NotificationResponse, NotificationService, NotificationSettingRequest, NotificationSettingResponse, NotificationSettingsResponse, NotificationSystemSettingsRequest, NotificationType, NotificationUpdateRequest, ObservationMethodChild, ObservationRule, ObservationService, ObservationType, ObservationTypeChild, ObservationTypeChildBase, ObservationTypeService, OkObjectResult, OkResult, OptionalUpdateNullableDateOnly, OptionalUpdateNullableDecimal, OptionalUpdateNullableInt32, OptionalUpdateString, OtherSavingsCategory, OtherSavingsCategoryRequest, OtherSavingsRequest, OtherSavingsResponse, OutlierSeverityChild, PeriodComparison, PeriodRange, PeriodRangeComparison, PeriodRangeComparisonDetailed, PermissionProduct, Permissions, PermissionsRequest, PlaceBenchmarkService, PlaceCategoryRequest, PlaceCategoryResponse, PlaceChild, PlaceChildWithFloorArea, PlaceCost, PlaceCreate, PlaceDigestActualAndCalendarizedMonthlyResponse, PlaceDigestActualAndCalendarizedMonthlyResponseCommodityData, PlaceDigestActualAndCalendarizedMonthlyResponseCommodityResults, PlaceDigestActualAndCalendarizedMonthlyResponseResults, PlaceDigestActualAndCalendarizedYearlyResponse, PlaceDigestActualAndCalendarizedYearlyResponseCommodityData, PlaceDigestActualAndCalendarizedYearlyResponseCommodityResults, PlaceDigestActualAndCalendarizedYearlyResponseResults, PlaceDigestActualAndCalendarizedYearlyResponseTargetComparison, PlaceDigestComparisonResponse, PlaceDigestEnergyUseIntensity, PlaceDigestEnergyUseIntensityEuiCommodity, PlaceDigestEnergyUseIntensityEuiEnergyProject, PlaceDigestGHGYearlyResponse, PlaceDigestGHGYearlyResponseGHGScope, PlaceDigestGHGYearlyResponseGHGType, PlaceDigestGHGYearlyResponseResults, PlaceDigestGHGYearlyResponseTargetComparison, PlaceDigestNormalizedCommodityTargetComparisonMonthly, PlaceDigestNormalizedCommodityTargetComparisonMonthlyCommodityResults, PlaceDigestNormalizedMonthlyResponse, PlaceDigestNormalizedMonthlyResponseCommodityData, PlaceDigestNormalizedMonthlyResponseCommodityResults, PlaceDigestNormalizedMonthlyResponseResults, PlaceDigestNormalizedTargetComparisonMonthly, PlaceDigestNormalizedTargetComparisonMonthlyResults, PlaceDigestNormalizedYearlyResponse, PlaceDigestNormalizedYearlyResponseCommodityData, PlaceDigestNormalizedYearlyResponseCommodityResults, PlaceDigestNormalizedYearlyResponseResults, PlaceDigestNormalizedYearlyResponseTargetComparison, PlaceDigestPlaceEnergyUseIntensity, PlaceDigestSavingsMonthlyResponse, PlaceDigestSavingsMonthlyResponseCommodityData, PlaceDigestSavingsMonthlyResponseCommodityDataCommodityResults, PlaceDigestSavingsMonthlyResponseResults, PlaceDigestSavingsYearlyResponse, PlaceDigestSavingsYearlyResponseCommodityData, PlaceDigestSavingsYearlyResponseCommodityDataCommodityResults, PlaceDigestSavingsYearlyResponseResults, PlaceDigestService, PlaceDigestTargetComparisonMonthly, PlaceDigestTargetComparisonMonthlyResults, PlaceEdit, PlaceEntityType, PlaceGroupCategoryChild, PlaceGroupChild, PlaceGroupDigestAreaDemandRankingResponse, PlaceGroupDigestAreaRankingChild, PlaceGroupDigestBenchmarkRankingChild, PlaceGroupDigestBenchmarkRankingResponse, PlaceGroupDigestChild, PlaceGroupDigestService, PlaceGroupDigestWeatherRankingChild, PlaceGroupDigestWeatherRankingResponse, PlaceGroupMember, PlaceGroupRequest, PlaceGroupResponse, PlaceGroupService, PlaceInfo, PlaceResponse, PlaceService, PlaceSizeChild, PlaceSizeCreate, PlaceSizeResponse, PlaceSubmissionTypeRequest, PlaceTypeRequest, PlaceTypeResponse, PlaceUDFResponse, PmCommodityChild, PostalCodeResponse, PostalCodeResponseWeatherStation, PostalCodeService, Preference, PreferenceRequest, PrimaryUseChild, PrimaryUseCreate, PrimaryUseResponse, PrimaryUseService, ProblemDetails, Product, ProjectManagerResponse, PublicDashboardsOrMaps, PublicDashboardsOrMapsClassPermission, QuickFilter, QuickReport, RateChild, RateChildResponse, RateCreate, RateDigestActualYearlyResponse, RateDigestActualYearlyResponseCommodityData, RateDigestActualYearlyResponseCommodityResults, RateDigestActualYearlyResponseResults, RateDigestService, RateEdit, RateResponse, RateSchedules, RateSchedulesClassPermission, RateService, RateVersionRequest, RateVersionResponse, Reading, ReadingChildBase, ReadingCreate, ReadingDelete, ReadingImportProfile, ReadingImportProfileColumn, ReadingImportProfileRequest, ReadingImportProfileResponse, ReadingImportRequest, ReadingResponse, Readings, ReadingsObservation, RecordImportProfile, RecordImportProfileEdit, RecordImportProfileRequest, RecordImportProfileResponse, RecordImportRequest, Records, RecordsClassPermission, RecordsListAdministrator, RecordsListAdministratorClassPermission, RecordsModule, RecordsModuleClassPermission, RelatedReportResponse, ReportAdministrator, ReportAdministratorClassPermission, ReportBuilderService, ReportCategoryChild, ReportChild, ReportCreate, ReportDistributionChild, ReportDistributionCreateRequest, ReportDistributionDetailsResponse, ReportDistributionEditRequest, ReportDistributionEmailSettings, ReportDistributionLogDetailsResponse, ReportDistributionLogEmailSettings, ReportDistributionLogReportSettings, ReportDistributionLogResponse, ReportDistributionService, ReportEdit, ReportGroupChildResponse, ReportGroupRequest, ReportGroupResponse, ReportGroups, ReportGroupsClassPermission, ReportService, ReportSubscriptionChild, ReportSubscriptionDayIndicatorChild, ReportSubscriptionRequest, ReportSubscriptionScheduleTypeChild, ReportSubscriptionScheduleTypeResponse, ReportType, ReportingSettingRequest, ReportingSettingResponse, Reports, ReportsClassPermission, ReportsModule, ReportsModuleClassPermission, RequiredAddressChild, ResetUserPasswords, ResetUserPasswordsClassPermission, ReversalBatchSettings, Reviewed, Roles, RolesClassPermission, RollingComparisonDetail, RollingComparisonPeriodValue, RollingComparisonResponse, RollupUnitUpdate, RollupUnitUpdateCommonUnit, RouteChild, RouteDetailsResponse, RouteMeter, RouteMeterChannelLatestReadingResponse, RouteRequest, RouteResponse, RouteService, SafeWaitHandle, SavingsAdjustments, SavingsAdjustmentsClassPermission, SavingsDailyData, SavingsEngine, SavingsEngineClassPermission, SavingsLog, SavingsMeterBillDailyResponse, SavingsMeterBillResponse, SavingsService, ScheduleChild, ScheduleCreate, ScheduleDay, ScheduleDayCreate, ScheduleEdit, ScheduleResponse, ScheduleService, ScheduleWithEntitySummaries, SearchAccountChild, SearchAccountChildSearchAccountChild, SearchAccountMeterBillEntry, SearchBillChild, SearchBillChildSearchBillAccountChild, SearchBillChildSearchBillChild, SearchCollectionChild, SearchCollectionChildSearchCollection, SearchCostCenterChild, SearchCostCenterChildSearchCostCenter, SearchEmissionSourceChild, SearchEmissionSourceChildSearchEmissionSource, SearchMeterChild, SearchMeterChildSearchMeterChild, SearchParentPlaceChild, SearchPlaceChild, SearchPlaceChildSearchPlaceChild, SearchPlaceGroup, SearchResponse, SearchService, SearchVendorChild, SearchVendorChildSearchVendorChild, SendDataAccessReleaseRequest, SendNotifications, SendNotificationsClassPermission, SentinelService, Setup, SetupService, ShareRequest, ShareResponse, SharedBillLists, SharedBillListsClassPermission, SharedDashboardsOrMaps, SharedDashboardsOrMapsClassPermission, SharedRecordsLists, SharedRecordsListsClassPermission, SharedReports, SharedReportsClassPermission, SingleBoolean, SingleValue, SourceBatchLogResponse, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService, SpecialAdjustmentCreate, SpecialAdjustmentEdit, SpecialAdjustmentMethod, SpecialAdjustmentResponse, SpecialAdjustmentType, SpecificReportResponse, SpecificWidgetResponse, StatementDateTooLongAfterBillEndSettingRequest, StatementDateTooLongAfterBillEndSettingResponse, StatisticsResponse, SubmissionTypeResponse, SubtractRequest, SubtractResponse, SumRequest, SumResponse, SummarizationMethod, SummaryAccountService, SystemSettingsRequest, SystemSettingsResponse, SystemUserRoleChild, SystemUserRoleResponse, SystemUserRoleWithHiddenRequest, SystemUserService, TagChild, TagResponse, TagService, Target, TargetBatchLogResponse, TargetSettings, TaskChild, TaskEdit, TaskResponse, TaskService, TaskType, TemperatureResponse, TemplateChild, TemplateLine, TemplateResponse, TemplateService, TemplateVendorLineRequest, TemplateVersion, TestBillImportRule, TestBillImportRuleResponse, TestBillImportRuleWithBillDescriptor, TimeFormatResponse, TimeSeriesDataResponse, TimeSeriesEntity, TimeSeriesEntitySummary, TimeSeriesSummary, TimeSeriesValue, TimeZoneChild, TimeZoneResponse, TimeZoneService, ToggleVisible, TooManyConsecutiveEstimatedBillsSettingRequest, TooManyConsecutiveEstimatedBillsSettingResponse, TopmostCollection, TopmostCostCenter, TopmostPlace, TopmostSpace, TotalBillCostDoesNotMatchLineItemTypesSettingRequest, TotalBillCostDoesNotMatchLineItemTypesSettingResponse, TrendDataResponse, TrendTarget, UDFCreate, UDFEdit, UDFFieldChild, UDFResponse, UDFSelectValueCreate, UDFSelectValueEdit, UDFSelectValueEntityResponse, UDFSelectValueResponse, UDFSelectValueUpdate, UDFService, UDFUpdate, UDFValue, Unit, UnitChild, UnitResponse, UnitService, UnitSystemSettings, UnitSystemSettingsClassPermission, UnitType, UpdateApprovedBills, UpdateApprovedBillsClassPermission, UpdateBatchStatusRequest, UpdateResult, UpdateSkippedResult, UpdateUnitsOnExistingBills, UpdateUnitsOnExistingBillsClassPermission, UpdatedOnlyResult, UpsertAggregateMeterRequest, UserChild, UserChildWithEmail, UserCreateRequest, UserEditRequest, UserGroupChild, UserGroupRequest, UserGroupResponse, UserGroupService, UserGroupWithMembers, UserResponse, UserRoleRequest, UserRoleService, UsersAndRoles, UsersAndRolesClassPermission, UsersAndUserGroups, UsersAndUserGroupsClassPermission, UtilityPlatform, UtilityPlatformMeter, UtilityPlatformService, ValueComparison, ValueWithUnit, VendorAuditEnable, VendorBillAccountChargeSplitSettingsResponse, VendorChild, VendorContractResponse, VendorDigestActualYearlyResponse, VendorDigestActualYearlyResponseCommodityData, VendorDigestActualYearlyResponseCommodityResults, VendorDigestActualYearlyResponseResults, VendorDigestService, VendorEdit, VendorRequest, VendorResponse, VendorService, VendorTypeChild, VendorUDFResponse, Vendors, VendorsAndRatesModule, VendorsAndRatesModuleClassPermission, VendorsClassPermission, VersionChild, VersionResponse, WaitHandle, WatticsDataPoint, WatticsDataPointChild, WatticsDataPointRequest, WatticsSite, WatticsSiteRequest, WattsChatCreate, WattsChatEdit, WattsChatMessageCreate, WattsChatMessageResponse, WattsChatResponse, WattsService, WeatherImportResult, WeatherImportSettings, WeatherSettings, WeatherSettingsClassPermission, WeatherStationChild, WeatherStationResponse, WeatherStationService, WeatherStationSummary, WebCaptureAccountResponse, WebCaptureCredentialDetailsResponse, WebCaptureCredentialResponse, WebCaptureCredentialService, WebCaptureMfaRefreshResponse, WebCapturePartnerResponse, WebCapturePasswordRefreshResponse, WebhookCreateRequest, WebhookCustomAction, WebhookEditRequest, WebhookEventTypeChild, WebhookLogDetailsResponse, WebhookLogResponse, WebhookResponse, WebhookService, WidgetCreate, WidgetEdit, WidgetResponse, WidgetSavingsYearlyResponse, WidgetSavingsYearlyResponseCommodityData, WidgetSavingsYearlyResponseResults, WidgetService, WorkflowDisplaySetting, WorkflowService, WorkflowSettingsRequest, WorkflowSettingsResponse, YearRange };
|
|
179751
|
+
export { APIS, AbnormalBillCostWithOutlierAnalysisSettingRequest, AbnormalBillCostWithOutlierAnalysisSettingResponse, AbnormalBillDemandWithOutlierAnalysisSettingRequest, AbnormalBillDemandWithOutlierAnalysisSettingResponse, AbnormalBillUseWithOutlierAnalysisSettingRequest, AbnormalBillUseWithOutlierAnalysisSettingResponse, AccountAlertRequest, AccountAlertResponse, AccountAuditEnable, AccountAuditSettingsRequest, AccountAuditSettingsResponse, AccountBillAccountChargeSplitSettingsResponse, AccountChild, AccountChildWithType, AccountCodeHistoryChild, AccountCodeHistoryRequest, AccountCodeHistoryResponse, AccountConnectionStatusResponse, AccountCreate, AccountDigestActualMonthlyResponse, AccountDigestActualMonthlyResponseCommodityData, AccountDigestActualMonthlyResponseCommodityResults, AccountDigestActualMonthlyResponseResults, AccountDigestActualYearlyResponse, AccountDigestActualYearlyResponseCommodityData, AccountDigestActualYearlyResponseCommodityResults, AccountDigestActualYearlyResponseResults, AccountDigestService, AccountEdit, AccountMeterChild, AccountMeterChildWithSerialNumber, AccountMeterEdit, AccountMeterRateResponse, AccountMeterRequest, AccountMeterResponse, AccountMeterService, AccountOrMeterUsage, AccountPeriodRequest, AccountPeriodResponse, AccountRateChild, AccountRateRequest, AccountRateResponse, AccountResponse, AccountService, AccountTemplateResponse, AccountTypeChild, AccountUDFResponse, AccountingSettings, AccountingSettingsClassPermission, AccountingSettingsRequest, AccountingSettingsResponse, Accounts, AccountsClassPermission, AccountsModule, AccountsModuleActualData, AccountsModuleActualDataClassPermission, AccountsModuleClassPermission, AccrualProcessorRequest, AccrualService, AccrualSettings, AccrualSettingsClassPermission, AccrualSettingsResponse, ActionableBillCounts, Activity, ActivityService, ActualVsBudgetResponse, AddressChild, AddressChildBase, AddressLookup, AdjustedCostTypeResponse, AdjustmentBaseMethodChild, AdminService, AdminSettingsRequest, AdminSettingsResponse, AggregatedComparisonResponseGHGPerformanceComparison, AggregatedItemRankResponse, AggregatedMonthlyCAPTrendResponse, AggregatedResponseGHGBuildingRank, AggregatedResponseItemRankWithUnitResponse, AllInstalledReports, AllInstalledReportsClassPermission, ApiKeyCreateRequest, ApiKeyCreateResponse, ApiKeyEditRequest, ApiKeyResponse, ApiKeyService, ApiService, ApiUser, ApplicationSettings, ApplicationSettingsClassPermission, ApprovalWorkflowChild, ApprovalWorkflowRequestChild, ApprovalWorkflowSettings, ApproveBills, ApproveBillsClassPermission, ArcadiaAccount, ArcadiaAccountCustomData, ArcadiaProvider, AreaNormalizedResponse, AssignVersionsToStep, AucRangeRequest, AucRangeResponse, AuditService, AuditSettingRequest, AuditSettingResponse, AuditSettingsRequest, AuditSettingsResponse, AuthenticationService, BASE_PATH, BaselineEngine, BaselineEngineClassPermission, BaselineLog, BaselineProcessorRequest, BaselineProcessorRequestBaselineBill, BaselineProcessorResponse, BaselineProcessorResponseBaselineBill, BatchChild, BatchCreate, BatchEdit, BatchLogResponse, BatchResponse, BatchService, BatchSettings, BatchWorkflowChild, BatchWorkflowSettings, BenchmarkCategoryResponse, BenchmarkEdit, BenchmarkSettingsEdit, BenchmarkSettingsResponse, BenchmarkValue, BenchmarkValueRequest, BenchmarkValuesResponse, BenchmarkWithUsedCountResponse, BillAccountBodyLineCreate, BillAccountBodyLineEdit, BillAccountChargeSplitMethodRequest, BillAccountChargeSplitMethodResponse, BillAccountChargeSplitService, BillAccountChargeSplitSettingResponse, BillAccountChargeSplitSettingsResponse, BillAccountMeterChild, BillAccountMeterResponse, BillAccountMeterStatisticsResponse, BillAccrualExclusionRequest, BillActionApprove, BillActionCustom, BillActionDelete, BillActionExportHold, BillActionHeaderUpdate, BillActionHistoricalExport, BillActionMove, BillActionMoveList, BillActionSplit, BillActionVoid, BillCAPture, BillCAPtureClassPermission, BillCalendarizedHistory, BillContainsLineItemDescriptionsSettingRequest, BillContainsLineItemDescriptionsSettingResponse, BillContainsLineItemTypesSettingRequest, BillContainsLineItemTypesSettingResponse, BillCreate, BillDeleteActionResult, BillDescriptorJson, BillDescriptorJsonBillDescriptorChargeLineItem, BillDescriptorJsonBillDescriptorConfidence, BillDescriptorJsonBillDescriptorHeaderJson, BillDescriptorJsonBillDescriptorIdentifier, BillDescriptorJsonBillDescriptorMeterJson, BillDescriptorJsonBillDescriptorMeterLineItem, BillDescriptorJsonBillDescriptorProcessingError, BillEdit, BillEntryBodyLine, BillEntryBodyLineChild, BillEntryBodyLineWithNounChild, BillEntryMeterChild, BillEntryObservationTypeChild, BillEntryResponse, BillExport, BillExportOptions, BillHeaderChild, BillHeaderUpdate, BillHeaderUpdateAccountPeriodChild, BillHeaderUpdateBeginDateChild, BillHeaderUpdateBillingPeriodChild, BillHeaderUpdateControlCodeChild, BillHeaderUpdateDueDateChild, BillHeaderUpdateEndDateChild, BillHeaderUpdateEstimatedChild, BillHeaderUpdateInvoiceNumberChild, BillHeaderUpdateStatementDateChild, BillHeaderWorkflowChild, BillHistoryResponse, BillIdResponse, BillImportKickoutDetailsResponse, BillImportProfileColumnMapping, BillImportProfileObservation, BillImportProfileRequest, BillImportProfileResponse, BillImportRequest, BillImportRuleRequest, BillImportRuleResponse, BillImportRuleService, BillImportTaskKickoutSummaryResponse, BillImportWorkflowSettings, BillKickoutImportRequest, BillLineTypeMappingResponse, BillListAdministrator, BillListAdministratorClassPermission, BillMeterBodyLineCreate, BillMeterBodyLineEdit, BillMeterCreate, BillMeterEdit, BillPaymentDetailsFileResponse, BillPaymentDetailsOptionalItem, BillPaymentDetailsOptionalItemWithErrors, BillPaymentDetailsOptionalResponse, BillPaymentEventCreate, BillPaymentEventResponse, BillResponse, BillReversal, BillReversalRequest, BillService, BillSignificantlyShorterOrLongerThanPreviousSettingRequest, BillSignificantlyShorterOrLongerThanPreviousSettingResponse, BillSplitDetailsRequest, BillSplitDetailsResponse, BillSplitParentDetailsResponse, BillSplitPlaceSizeChild, BillSplitService, BillUnexport, BillUnexportOptions, BillUsage, BillViewAccountChild, BillViewAddressChild, BillViewMeterChild, BillViewResponse, BillViewService, BillViewVendorChild, BillWorkflowSettings, BillWorkflowSettingsClassPermission, BillingPeriodCostUnitChild, BillingPeriodCostUnitDeltaChild, BillingPeriodUseCostChild, BillingPeriodUseCostDeltaChild, BillingPeriodUseUnitChild, BillingPeriodUseUnitDeltaChild, BillsAndBatches, BillsAndBatchesClassPermission, BillsModule, BillsModuleClassPermission, BillsOverdueFromVendorResponse, BodylineChild, BodylineResponse, BudgetCreate, BudgetDataType, BudgetEdit, BudgetPeriodType, BudgetResponse, BudgetService, BudgetUsageMethod, BudgetVersionCreate, BudgetVersionEdit, BudgetVersionResponse, BudgetVersionSummary, BudgetVersionSummaryResponse, BudgetsAndBudgetVersions, BudgetsAndBudgetVersionsClassPermission, BuildingAndMeterGroups, BuildingAndMeterGroupsClassPermission, BuildingsAndMetersModule, BuildingsAndMetersModuleActualData, BuildingsAndMetersModuleActualDataClassPermission, BuildingsAndMetersModuleBudgets, BuildingsAndMetersModuleBudgetsClassPermission, BuildingsAndMetersModuleCalendarizedData, BuildingsAndMetersModuleCalendarizedDataClassPermission, BuildingsAndMetersModuleClassPermission, BuildingsAndMetersModuleMeterIntervalData, BuildingsAndMetersModuleMeterIntervalDataClassPermission, BuildingsAndMetersModuleNormalizedData, BuildingsAndMetersModuleNormalizedDataClassPermission, BuildingsAndMetersModuleSavings, BuildingsAndMetersModuleSavingsClassPermission, BuildingsAndMetersModuleSustainability, BuildingsAndMetersModuleSustainabilityClassPermission, BuildingsAndOrganizations, BuildingsAndOrganizationsClassPermission, BulkBaselineProcessorRequest, BulkImportArcadiaCredentialRequest, BulkImportArcadiaCredentialsResponse, BulkMeterCostAvoidanceSettings, COLLECTION_FORMATS, CalculateSavingsRequest, CalculatedBillCostRequest, CalculatedBillCostResponse, CalculatedBillDemandRequest, CalculatedBillDemandResponse, CalculatedBillDetailsResponse, CalculatedBillService, CalculatedBillUseRequest, CalculatedBillUseResponse, CalculationRequest, CalculationResponse, CalendarizedCalculationRequest, CalendarizedCalculationResponse, CalendarizedSumRequest, CancellationToken, ChannelChild, ChannelChildWithObservationType, ChannelCreate, ChannelEdit, ChannelLatestReading, ChannelResponse, ChannelService, ChannelVersionRequest, ChannelVersionResponse, ChannelVersionWithBeginDateRequest, ChargebackEngineService, ChargebackProcessorSettings, ChargebackProcessorSettingsForAggregations, ChargebackProcessorSettingsForSplits, ChargebackProcessorSettingsWithoutFilters, ChargebackReversals, ChargebackReversalsClassPermission, ChargebackTaskRequest, ChargebackTaskResponse, ChargebackTaskService, ChargebackTaskVersionResponse, ChargebackWorkflowBase, ChargebackWorkflowCreate, ChargebackWorkflowDigestChild, ChargebackWorkflowDigestResponse, ChargebackWorkflowDigestSplitChild, ChargebackWorkflowEdit, ChargebackWorkflowResponse, ChargebackWorkflowService, ChargebackWorkflowSettings, ChargebackWorkflowStep, ChargebackWorkflowStepChild, ChargebackWorkflowStepCreate, ChargebackWorkflowStepEdit, Chargebacks, ChargebacksClassPermission, ChargebacksModule, ChargebacksModuleClassPermission, Claim, CollectionChild, CollectionEmissionSourceChild, CollectionRequest, CollectionResponse, CollectionService, Collections, CollectionsClassPermission, ColumnNumberOrOverrideValueNullableInt32, ColumnNumberOrOverrideValueString, CommodityCategory, CommodityCategoryChild, CommodityCategoryRequest, CommodityCategoryResponse, CommodityCategoryService, CommodityChild, CommodityChildWithCategory, CommodityDigestActualYearlyResponse, CommodityDigestActualYearlyResponseCommodityData, CommodityDigestActualYearlyResponseCommodityResults, CommodityDigestActualYearlyResponseResults, CommodityDigestService, CommodityEditRequest, CommodityRequest, CommodityResponse, CommodityService, CommoditySkipAuditSettingRequest, CommoditySkipAuditSettingResponse, CommodityValueComparison, Configuration, ContactChild, CopyFromMeterResponse, CopyMeterRequest, CostAvoidanceSettings, CostAvoidanceTask, CostCategoryEdit, CostCategoryResponse, CostCategoryService, CostCenterAccountChild, CostCenterChild, CostCenterCreate, CostCenterDigestActualMonthlyResponse, CostCenterDigestActualMonthlyResponseCommodityData, CostCenterDigestActualMonthlyResponseCommodityResults, CostCenterDigestActualMonthlyResponseResults, CostCenterDigestActualYearlyResponse, CostCenterDigestActualYearlyResponseCommodityData, CostCenterDigestActualYearlyResponseCommodityResults, CostCenterDigestActualYearlyResponseResults, CostCenterDigestService, CostCenterResponse, CostCenterService, CostCenters, CostCentersClassPermission, CostConversion, CostConversionBase, CostSavingsChild, CostSavingsUnit, Country, CountryService, CreateTemplateFromBill, CreateUtilityPlatformMeter, CustomerChild, CustomerResponse, CustomerService, DashboardAdministrator, DashboardAdministratorClassPermission, DashboardAndMapsModule, DashboardAndMapsModuleClassPermission, DashboardCopy, DashboardCreate, DashboardEdit, DashboardGlobalSettings, DashboardGlobalSettingsEdit, DashboardResponse, DashboardService, DataAccessRelease, DataAccessReleaseMetaData, DataAccessReleaseNoFileRequest, DataAccessReleaseRequest, DataAccessReleaseState, DataAccessReleaseStatus, DataPointChild, DataPointChildWithParentAndImportId, DataPointCreate, DataPointEdit, DataPointResponse, DataPointSentinel, DataPointService, DataTypeResponse, DateRange, DayOfWeek, DeleteReadingResponse, DestinationAccountMeterChild, DestinationAccountResponse, DetailedGuidResponse, DistributeAccountChargesBase, DistributeAccountChargesToBillsRequest, DistributedReportsConfiguration, DistributedReportsSettings, DistributedReportsSettingsClassPermission, DistributionVersionManage, DistributionVersionResponse, DueDateTooLongAfterBillEndSettingRequest, DueDateTooLongAfterBillEndSettingResponse, DynamicListRequest, DynamicPercentageBillSplit, DynamicPercentageBillSplitResponse, ENERGYSTARSubmissions, ENERGYSTARSubmissionsClassPermission, EUIGoalEditRequest, EUIGoalMilestoneRequest, EUIGoalMilestoneResponse, EUIGoalPlaceData, EUIGoalResponse, EUIGoalService, EditEsaPlaceSizesRequest, EmailProperties, EmissionRecordRequest, EmissionRecordResponse, EmissionRecordService, EmissionRecordType, EmissionSourceChild, EmissionSourceCreate, EmissionSourceEdit, EmissionSourceFactorCategoryBulkUpdate, EmissionSourceLink, EmissionSourceLinkRequest, EmissionSourceMultiFactorCreate, EmissionSourceMultiFactorEdit, EmissionSourceMultiFactorResponse, EmissionSourceResponse, EmissionSourceService, EmissionsSources, EmissionsSourcesClassPermission, EmissionsSourcesModule, EmissionsSourcesModuleClassPermission, EnergyCapOptionsEnergyCapIDOptions, EnergyCapSdkModule, EnergyManagerModule, EnergyManagerModuleClassPermission, EnergyProjectCreate, EnergyProjectEdit, EnergyProjectPlaceChild, EnergyProjectResponse, EnergyProjectService, EnergyProjectType, EnergyProjectTypeCreate, EnergySavingsChild, EnergySavingsUnit, EnergyStarCommodityLinkChild, EnergyStarCommodityLinkRequest, EnergyStarCommodityMeterTypeMapping, EnergyStarCommodityMeterTypeMappingChild, EnergyStarMeterLinkChild, EnergyStarMeterLinkRequest, EnergyStarPlaceHierarchyResponse, EnergyStarPlaceLinkRequest, EnergyStarPlaceLinkResponse, EnergyStarPlaceMetricsRequest, EnergyStarPlaceMetricsResponse, EnergyStarPlaceSubmissionStatusChild, EnergyStarPlaceSubmissionStatusResponse, EnergyStarPmMeter, EnergyStarPmProperty, EnergyStarRatingChild, EnergyStarService, EnergyStarSettings, EnergyStarSettingsRequest, EnergyStarSettingsResponse, EnergyStarSubmissionPlaceChild, EnergyStarSubmissionRequest, EnergyStarTaskPlaceChild, EnergyStarTaskResponse, EntityScheduleSummary, Environment, EnvironmentService, EsaChannelChild, EsaChannelChildWithObservationType, EsaChannelCreate, EsaChannelEdit, EsaChannelResponse, EsaChannelService, EsaChannelVersionCreate, EsaChannelVersionCreateWithBeginDate, EsaChannelVersionEdit, EsaChannelVersionResponse, EsaDeleteReadingResponse, EsaDeleteReadingSummarizedResponse, EsaIntervalDataOverlay, EsaIntervalDataResponse, EsaPlaceCreate, EsaPlaceDataRollupRequest, EsaPlaceEdit, EsaPlaceResponse, EsaPlaceService, EsaPlaceSizeCreate, EsaReadingCreate, EsaReadingCreateError, EsaReadingCreateResponse, EsaReadingDelete, EsaReadingImportProfile, EsaReadingImportProfileColumn, EsaReadingImportProfileCreate, EsaReadingImportProfileEdit, EsaReadingImportProfileResponse, EsaReadingImportRequest, EsaReadingNoteByIntervalResponse, EsaReadingNoteIntervalItem, EsaReadingNoteResponse, EsaReadingNoteService, EsaReadingResponse, EsaReadingService, EsaReadingSummarizedDelete, EsaReadingSummarizedResponse, EsaReadingValue, EsaReadingValueError, EsaSentinelPrediction, EsaSentinelPredictionRequest, EsaSentinelPredictionResponse, EsaSentinelPredictionsResponse, Estimated, ExportBills, ExportBillsClassPermission, ExportFormatChild, ExportHold, ExportHoldClassPermission, ExportService, ExportWorkflowChild, ExportWorkflowSettings, FacilityProjects, FacilityProjectsClassPermission, FailedReadingResponse, FailedReadings, FileDataTypeResponse, FileStoreService, FilterDataResponse, FilterEdit, FilterResponse, FilterService, FixedAmountResponse, FixedDemandRequest, FixedPercentage, FixedPercentageResponse, FixedUnitCostRequest, FixedUseRequest, FlagActionChild, FlagEdit, FlagEventChild, FlagIssueActionChild, FlagIssueEdit, FlagIssueEditAction, FlagIssueEventChild, FlagIssueListAction, FlagIssueResponse, FlagIssueStatusChild, FlagIssueTypeChild, FlagListAction, FlagResponse, FlagService, FlagStatusChild, FlagTypeChild, FlagTypeCreate, FlagWidget, FlagWidgetChild, FlaggedItems, FlaggedItemsClassPermission, FloorAreaSplit, FloorAreaSplitResponse, FormTemplateChild, FormTemplateRequest, FormTemplateResponse, FormulaService, FormulaValidationRequest, FormulaValidationResponse, Frequency, GHGBuildingRank, GHGCarbonFootprintResponse, GHGDefaultFactor, GHGFactor, GHGFactorCategory, GHGFactorChild, GHGFactorRegion, GHGFactorResponse, GHGFactorVersionHistoryResponse, GHGFactorsResponse, GHGGas, GHGGroupEmissions, GHGPerformanceComparison, GHGScope, GHGScopeCategory, GHGScopeCategoryChild, GHGScopeResponse, GHGService, GHGSettingResponse, GHGSettings, GHGTargetEmissions, GHGTypeChild, GHGVersion, GHGYearlyEmissions, GHGasDefaultSettingRequest, GHGasDefaultSettingRequestCommodityChild, GHGasDefaultSettingRequestScopeCategoryAndFactorChild, GHGasDefaultSettingResponse, GHGasDefaultSettingResponseCommodityChild, GHGasFactorAndScopeCategoryPair, GHGasFactorAndScopeCategoryPairCreate, GHGasFactorChild, GHGasScopeCategoryChild, GLSubCodeChild, GLSubCodeChildRequest, GLSubcodeRequest, GLSubcodeResponse, GeneralLedgerChild, GeneralLedgerRequest, GeneralLedgerResponse, GeneralLedgerService, GenericBodylineRequest, GenericBodylineResponse, GenericCount, GlobalCostAvoidanceSettings, GlobalCostAvoidanceSettingsClassPermission, GreenhouseGasAdministrator, GreenhouseGasAdministratorClassPermission, GroupDisplaySetting, GroupMemberRequest, GroupMeterGroupResponse, GroupPlaceGroupMember, GroupPlaceGroupResponse, GroupsAndBenchmarksModule, GroupsAndBenchmarksModuleClassPermission, GuidResponse, HiddenRequest, HierarchicalCollections, HierarchicalCollections2, HierarchicalCostCenters, HierarchicalCostCenters2, HierarchicalDataPoint, HierarchicalEmissionSource, HierarchicalMeter, HierarchicalPlaces, HierarchicalPlaces2, HierarchicalSpaces, HierarchicalSpaces2, HierarchyService, HighPrecisionTimeSeriesValue, HighPrecisionValue, IActionResult, IGHGDefaultScopeCategoryAndFactor, IOutputFormatter, Icon, ImportService, IntervalData, IntervalDataAnalysis, IntervalDataAnalysisClassPermission, IntervalDataClassPermission, IntervalDataRollup, IntervalDataRollupClassPermission, ItemRankResponse, ItemRankWithUnitResponse, JsonBillExportAccount, JsonBillExportGeneralLedger, JsonBillExportLine, JsonBillExportMeter, JsonBillExportPlace, JsonBillExportResponse, JsonBillExportVendor, KickoutField, KickoutValue, LatestBenchmarkValue, LicenseFeatureAccountingExport, LicenseFeatureAccrualBills, LicenseFeatureBillCAPtureManagedServices, LicenseFeatureBillCapturePostPay, LicenseFeatureBillCapturePrePay, LicenseFeatureBudgets, LicenseFeatureCarbonHub, LicenseFeatureChargebacks, LicenseFeatureCostAvoidance, LicenseFeatureCustomBenchmarks, LicenseFeatureEnergyCAPPayments, LicenseFeatureGhg, LicenseFeatureGhgPremium, LicenseFeatureIntervalData, LicenseFeatureIntervalDataAnalysis, LicenseFeatureLegacyGHG, LicenseFeatureNonEnglishBills, LicenseFeatureReportDesigner, LicenseFeatureReportDistribution, LicenseFeatureUIDI, LicenseFeatureVendorManagementServices, LicenseFeatures, LicenseRequest, LicenseResponse, LicenseUsage, LinkSubAccountsFilters, LinkSubAccountsRequest, ListActionAccrualExclusion, ListActionApprove, ListActionCustom, ListActionExportHold, ListActionReverse, ListActionVoid, ListColumnEdit, ListCopy, ListCreate, ListCreateResponse, ListEdit, ListIds, ListResponse, ListResponseListField, ListResponseListItem, ListService, ListTypeChild, LoginRequest, LoginResponse, ManualAdjustmentRequest, ManuallyAdjustSavings, ManuallyAdjustSavingsClassPermission, ManufacturerChild, MapDashboardSettingsRequest, MapDashboardSettingsResponse, MapPlaceChild, MapWidgetResponse, Me, MeRequest, MeService, Message, MeterAccountChild, MeterActionCreateEmissionSource, MeterBillResponse, MeterCAPResponse, MeterCalendarizedUseVsWeatherResponse, MeterCategoryRequest, MeterCategoryResponse, MeterChild, MeterChildIncludeMeterImportIdAndRoute, MeterChildIncludePlace, MeterChildIncludePlaceAndSerialNumber, MeterChildIncludePlaceChannelLatestReading, MeterChildSearch, MeterCost, MeterCreate, MeterDigestActualAndCalendarizedMonthlyResponse, MeterDigestActualAndCalendarizedMonthlyResponseResults, MeterDigestActualAndCalendarizedYearlyResponse, MeterDigestActualAndCalendarizedYearlyResponseResults, MeterDigestCalendarizedTrendResponse, MeterDigestCalendarizedTrendResponseResults, MeterDigestNormalizedMonthlyResponse, MeterDigestNormalizedMonthlyResponseResults, MeterDigestNormalizedYearlyResponse, MeterDigestNormalizedYearlyResponseResults, MeterDigestSavingsMonthlyResponse, MeterDigestSavingsMonthlyResponseResults, MeterDigestSavingsYearlyResponse, MeterDigestSavingsYearlyResponseResults, MeterDigestService, MeterEdit, MeterGroupCategoryChild, MeterGroupChild, MeterGroupDigestChild, MeterGroupDigestDemandRankingChild, MeterGroupDigestDemandRankingResponse, MeterGroupDigestRankingChild, MeterGroupDigestRankingResponse, MeterGroupDigestService, MeterGroupMember, MeterGroupMemberChild, MeterGroupRequest, MeterGroupResponse, MeterGroupService, MeterLink, MeterLinkRequest, MeterRateResponse, MeterResponse, MeterSavingsSettings, MeterSavingsSettingsClassPermission, MeterSearchRequest, MeterSerialNumberHistoryChild, MeterSerialNumberHistoryRequest, MeterSerialNumberHistoryResponse, MeterService, MeterTemplateResponse, MeterTypeChild, MeterUDFResponse, Meters, MetersClassPermission, MissingBillWidget, ModelVoid, MonthlyCAPTrend, MonthlyTimeSeriesValue, MostRecentAggregate, MoveAccountsBetweenVendors, MoveAccountsBetweenVendorsClassPermission, MoveBillsDestination, MoveCreateMeter, MoveExistingBills, MoveExistingBillsClassPermission, NamedPeriod, NormalizationSettings, NormalizationSettingsClassPermission, NotificationActionButtonResponse, NotificationBadgeResponse, NotificationCategory, NotificationDetailsResponse, NotificationResponse, NotificationService, NotificationSettingRequest, NotificationSettingResponse, NotificationSettingsResponse, NotificationSystemSettingsRequest, NotificationType, NotificationUpdateRequest, ObservationMethodChild, ObservationRule, ObservationService, ObservationType, ObservationTypeChild, ObservationTypeChildBase, ObservationTypeService, OkObjectResult, OkResult, OptionalUpdateNullableDateOnly, OptionalUpdateNullableDecimal, OptionalUpdateNullableInt32, OptionalUpdateString, OtherSavingsCategory, OtherSavingsCategoryRequest, OtherSavingsRequest, OtherSavingsResponse, OutlierSeverityChild, PeriodComparison, PeriodRange, PeriodRangeComparison, PeriodRangeComparisonDetailed, PermissionProduct, Permissions, PermissionsRequest, PlaceBenchmarkService, PlaceCategoryRequest, PlaceCategoryResponse, PlaceChild, PlaceChildWithFloorArea, PlaceCost, PlaceCreate, PlaceDigestActualAndCalendarizedMonthlyResponse, PlaceDigestActualAndCalendarizedMonthlyResponseCommodityData, PlaceDigestActualAndCalendarizedMonthlyResponseCommodityResults, PlaceDigestActualAndCalendarizedMonthlyResponseResults, PlaceDigestActualAndCalendarizedYearlyResponse, PlaceDigestActualAndCalendarizedYearlyResponseCommodityData, PlaceDigestActualAndCalendarizedYearlyResponseCommodityResults, PlaceDigestActualAndCalendarizedYearlyResponseResults, PlaceDigestActualAndCalendarizedYearlyResponseTargetComparison, PlaceDigestComparisonResponse, PlaceDigestEnergyUseIntensity, PlaceDigestEnergyUseIntensityEuiCommodity, PlaceDigestEnergyUseIntensityEuiEnergyProject, PlaceDigestGHGYearlyResponse, PlaceDigestGHGYearlyResponseGHGScope, PlaceDigestGHGYearlyResponseGHGType, PlaceDigestGHGYearlyResponseResults, PlaceDigestGHGYearlyResponseTargetComparison, PlaceDigestNormalizedCommodityTargetComparisonMonthly, PlaceDigestNormalizedCommodityTargetComparisonMonthlyCommodityResults, PlaceDigestNormalizedMonthlyResponse, PlaceDigestNormalizedMonthlyResponseCommodityData, PlaceDigestNormalizedMonthlyResponseCommodityResults, PlaceDigestNormalizedMonthlyResponseResults, PlaceDigestNormalizedTargetComparisonMonthly, PlaceDigestNormalizedTargetComparisonMonthlyResults, PlaceDigestNormalizedYearlyResponse, PlaceDigestNormalizedYearlyResponseCommodityData, PlaceDigestNormalizedYearlyResponseCommodityResults, PlaceDigestNormalizedYearlyResponseResults, PlaceDigestNormalizedYearlyResponseTargetComparison, PlaceDigestPlaceEnergyUseIntensity, PlaceDigestSavingsMonthlyResponse, PlaceDigestSavingsMonthlyResponseCommodityData, PlaceDigestSavingsMonthlyResponseCommodityDataCommodityResults, PlaceDigestSavingsMonthlyResponseResults, PlaceDigestSavingsYearlyResponse, PlaceDigestSavingsYearlyResponseCommodityData, PlaceDigestSavingsYearlyResponseCommodityDataCommodityResults, PlaceDigestSavingsYearlyResponseResults, PlaceDigestService, PlaceDigestTargetComparisonMonthly, PlaceDigestTargetComparisonMonthlyResults, PlaceEdit, PlaceEntityType, PlaceGroupCategoryChild, PlaceGroupChild, PlaceGroupDigestAreaDemandRankingResponse, PlaceGroupDigestAreaRankingChild, PlaceGroupDigestBenchmarkRankingChild, PlaceGroupDigestBenchmarkRankingResponse, PlaceGroupDigestChild, PlaceGroupDigestService, PlaceGroupDigestWeatherRankingChild, PlaceGroupDigestWeatherRankingResponse, PlaceGroupMember, PlaceGroupRequest, PlaceGroupResponse, PlaceGroupService, PlaceInfo, PlaceResponse, PlaceService, PlaceSizeChild, PlaceSizeCreate, PlaceSizeResponse, PlaceSubmissionTypeRequest, PlaceTypeRequest, PlaceTypeResponse, PlaceUDFResponse, PmCommodityChild, PostalCodeResponse, PostalCodeResponseWeatherStation, PostalCodeService, Preference, PreferenceRequest, PrimaryUseChild, PrimaryUseCreate, PrimaryUseResponse, PrimaryUseService, ProblemDetails, Product, ProjectManagerResponse, PublicDashboardsOrMaps, PublicDashboardsOrMapsClassPermission, QuickFilter, QuickReport, RateChild, RateChildResponse, RateCreate, RateDigestActualYearlyResponse, RateDigestActualYearlyResponseCommodityData, RateDigestActualYearlyResponseCommodityResults, RateDigestActualYearlyResponseResults, RateDigestService, RateEdit, RateResponse, RateSchedules, RateSchedulesClassPermission, RateService, RateVersionRequest, RateVersionResponse, Reading, ReadingChildBase, ReadingCreate, ReadingDelete, ReadingImportProfile, ReadingImportProfileColumn, ReadingImportProfileRequest, ReadingImportProfileResponse, ReadingImportRequest, ReadingResponse, Readings, ReadingsObservation, RecordImportProfile, RecordImportProfileEdit, RecordImportProfileRequest, RecordImportProfileResponse, RecordImportRequest, Records, RecordsClassPermission, RecordsListAdministrator, RecordsListAdministratorClassPermission, RecordsModule, RecordsModuleClassPermission, RelatedReportResponse, ReportAdministrator, ReportAdministratorClassPermission, ReportBuilderService, ReportCategoryChild, ReportChild, ReportCreate, ReportDistributionChild, ReportDistributionCreateRequest, ReportDistributionDetailsResponse, ReportDistributionEditRequest, ReportDistributionEmailSettings, ReportDistributionLogDetailsResponse, ReportDistributionLogEmailSettings, ReportDistributionLogReportSettings, ReportDistributionLogResponse, ReportDistributionService, ReportEdit, ReportGroupChildResponse, ReportGroupRequest, ReportGroupResponse, ReportGroups, ReportGroupsClassPermission, ReportService, ReportSubscriptionChild, ReportSubscriptionDayIndicatorChild, ReportSubscriptionRequest, ReportSubscriptionScheduleTypeChild, ReportSubscriptionScheduleTypeResponse, ReportType, ReportingSettingRequest, ReportingSettingResponse, Reports, ReportsClassPermission, ReportsModule, ReportsModuleClassPermission, RequiredAddressChild, ResetUserPasswords, ResetUserPasswordsClassPermission, ReversalBatchSettings, Reviewed, Roles, RolesClassPermission, RollingComparisonDetail, RollingComparisonPeriodValue, RollingComparisonResponse, RollupUnitUpdate, RollupUnitUpdateCommonUnit, RouteChild, RouteDetailsResponse, RouteMeter, RouteMeterChannelLatestReadingResponse, RouteRequest, RouteResponse, RouteService, SafeWaitHandle, SavingsAdjustments, SavingsAdjustmentsClassPermission, SavingsDailyData, SavingsEngine, SavingsEngineClassPermission, SavingsLog, SavingsMeterBillDailyResponse, SavingsMeterBillResponse, SavingsService, ScheduleChild, ScheduleCreate, ScheduleDay, ScheduleDayCreate, ScheduleEdit, ScheduleResponse, ScheduleService, ScheduleWithEntitySummaries, SearchAccountChild, SearchAccountChildSearchAccountChild, SearchAccountMeterBillEntry, SearchBillChild, SearchBillChildSearchBillAccountChild, SearchBillChildSearchBillChild, SearchCollectionChild, SearchCollectionChildSearchCollection, SearchCostCenterChild, SearchCostCenterChildSearchCostCenter, SearchEmissionSourceChild, SearchEmissionSourceChildSearchEmissionSource, SearchMeterChild, SearchMeterChildSearchMeterChild, SearchParentPlaceChild, SearchPlaceChild, SearchPlaceChildSearchPlaceChild, SearchPlaceGroup, SearchResponse, SearchService, SearchVendorChild, SearchVendorChildSearchVendorChild, SendDataAccessReleaseRequest, SendNotifications, SendNotificationsClassPermission, SentinelService, Setup, SetupService, ShareRequest, ShareResponse, SharedBillLists, SharedBillListsClassPermission, SharedDashboardsOrMaps, SharedDashboardsOrMapsClassPermission, SharedRecordsLists, SharedRecordsListsClassPermission, SharedReports, SharedReportsClassPermission, SingleBoolean, SingleValue, SourceBatchLogResponse, SpanClasspropertyinfoPaginatedPaginatedspanService, SpanClasspropertyinfoPermissionPermissionsAccountingSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccountsCreatespanService, SpanClasspropertyinfoPermissionPermissionsAccountsDeletespanService, SpanClasspropertyinfoPermissionPermissionsAccountsEditspanService, SpanClasspropertyinfoPermissionPermissionsAccountsViewspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsRunspanService, SpanClasspropertyinfoPermissionPermissionsAccrualSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsApplicationSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsApproveBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsBaselineEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsBillCAPtureViewspanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsBillWorkflowSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesCreatespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesDeletespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesManagespanService, SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesViewspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsEditspanService, SpanClasspropertyinfoPermissionPermissionsBudgetsAndBudgetVersionsViewspanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingAndMeterGroupsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsCreatespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsDeletespanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsEditspanService, SpanClasspropertyinfoPermissionPermissionsBuildingsAndOrganizationsViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebackReversalsManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksManagespanService, SpanClasspropertyinfoPermissionPermissionsChargebacksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsChargebacksRunspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsCreatespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsDeletespanService, SpanClasspropertyinfoPermissionPermissionsCollectionsEditspanService, SpanClasspropertyinfoPermissionPermissionsCollectionsViewspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersCreatespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersDeletespanService, SpanClasspropertyinfoPermissionPermissionsCostCentersEditspanService, SpanClasspropertyinfoPermissionPermissionsCostCentersViewspanService, SpanClasspropertyinfoPermissionPermissionsDashboardAndMapsModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsDistributedReportsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsManagespanService, SpanClasspropertyinfoPermissionPermissionsENERGYSTARSubmissionsRunspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesCreatespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesDeletespanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesEditspanService, SpanClasspropertyinfoPermissionPermissionsEmissionsSourcesViewspanService, SpanClasspropertyinfoPermissionPermissionsEnergyManagerModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsExportBillsRunspanService, SpanClasspropertyinfoPermissionPermissionsExportHoldManagespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsCreatespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsDeletespanService, SpanClasspropertyinfoPermissionPermissionsFacilityProjectsEditspanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsManagespanService, SpanClasspropertyinfoPermissionPermissionsFlaggedItemsViewspanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsGlobalCostAvoidanceSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsGroupsAndBenchmarksModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsIntervalDataManagespanService, SpanClasspropertyinfoPermissionPermissionsLicenseFeatureIntervalDataAnalysisViewspanService, SpanClasspropertyinfoPermissionPermissionsManuallyAdjustSavingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsMeterSavingsSettingsViewspanService, SpanClasspropertyinfoPermissionPermissionsMetersCreatespanService, SpanClasspropertyinfoPermissionPermissionsMetersDeletespanService, SpanClasspropertyinfoPermissionPermissionsMetersEditspanService, SpanClasspropertyinfoPermissionPermissionsMetersViewspanService, SpanClasspropertyinfoPermissionPermissionsMoveAccountsBetweenVendorsManagespanService, SpanClasspropertyinfoPermissionPermissionsMoveExistingBillsManagespanService, SpanClasspropertyinfoPermissionPermissionsPublicDashboardsOrMapsManagespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesCreatespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesDeletespanService, SpanClasspropertyinfoPermissionPermissionsRateSchedulesEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsCreatespanService, SpanClasspropertyinfoPermissionPermissionsRecordsDeletespanService, SpanClasspropertyinfoPermissionPermissionsRecordsEditspanService, SpanClasspropertyinfoPermissionPermissionsRecordsViewspanService, SpanClasspropertyinfoPermissionPermissionsReportAdministratorManagespanService, SpanClasspropertyinfoPermissionPermissionsReportGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsReportsRunspanService, SpanClasspropertyinfoPermissionPermissionsRolesManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsManagespanService, SpanClasspropertyinfoPermissionPermissionsSavingsAdjustmentsViewspanService, SpanClasspropertyinfoPermissionPermissionsSavingsEngineRunspanService, SpanClasspropertyinfoPermissionPermissionsUnitSystemSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsManagespanService, SpanClasspropertyinfoPermissionPermissionsUsersAndUserGroupsViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsAndRatesModuleViewspanService, SpanClasspropertyinfoPermissionPermissionsVendorsCreatespanService, SpanClasspropertyinfoPermissionPermissionsVendorsDeletespanService, SpanClasspropertyinfoPermissionPermissionsVendorsEditspanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsManagespanService, SpanClasspropertyinfoPermissionPermissionsWeatherSettingsViewspanService, SpecialAdjustmentCreate, SpecialAdjustmentEdit, SpecialAdjustmentMethod, SpecialAdjustmentResponse, SpecialAdjustmentType, SpecificReportResponse, SpecificWidgetResponse, StatementDateTooLongAfterBillEndSettingRequest, StatementDateTooLongAfterBillEndSettingResponse, StatisticsResponse, SubmissionTypeResponse, SubtractRequest, SubtractResponse, SumRequest, SumResponse, SummarizationMethod, SummaryAccountService, SystemSettingsRequest, SystemSettingsResponse, SystemUserRoleChild, SystemUserRoleResponse, SystemUserRoleWithHiddenRequest, SystemUserService, TagChild, TagResponse, TagService, Target, TargetBatchLogResponse, TargetSettings, TaskChild, TaskEdit, TaskResponse, TaskService, TaskType, TemperatureResponse, TemplateChild, TemplateLine, TemplateResponse, TemplateService, TemplateVendorLineRequest, TemplateVersion, TestBillImportRule, TestBillImportRuleResponse, TestBillImportRuleWithBillDescriptor, TimeFormatResponse, TimeSeriesDataResponse, TimeSeriesEntity, TimeSeriesEntitySummary, TimeSeriesSummary, TimeSeriesValue, TimeZoneChild, TimeZoneResponse, TimeZoneService, ToggleVisible, TooManyConsecutiveEstimatedBillsSettingRequest, TooManyConsecutiveEstimatedBillsSettingResponse, TopmostCollection, TopmostCostCenter, TopmostPlace, TopmostSpace, TotalBillCostDoesNotMatchLineItemTypesSettingRequest, TotalBillCostDoesNotMatchLineItemTypesSettingResponse, TrendDataResponse, TrendTarget, UDFCreate, UDFEdit, UDFFieldChild, UDFResponse, UDFSelectValueCreate, UDFSelectValueEdit, UDFSelectValueEntityResponse, UDFSelectValueResponse, UDFSelectValueUpdate, UDFService, UDFUpdate, UDFValue, Unit, UnitChild, UnitResponse, UnitService, UnitSystemSettings, UnitSystemSettingsClassPermission, UnitType, UpdateApprovedBills, UpdateApprovedBillsClassPermission, UpdateBatchStatusRequest, UpdateResult, UpdateSkippedResult, UpdateUnitsOnExistingBills, UpdateUnitsOnExistingBillsClassPermission, UpdatedOnlyResult, UpsertAggregateMeterRequest, UserChild, UserChildWithEmail, UserCreateRequest, UserEditRequest, UserGroupChild, UserGroupRequest, UserGroupResponse, UserGroupService, UserGroupWithMembers, UserResponse, UserRoleRequest, UserRoleService, UsersAndRoles, UsersAndRolesClassPermission, UsersAndUserGroups, UsersAndUserGroupsClassPermission, UtilityPlatform, UtilityPlatformMeter, UtilityPlatformService, ValueComparison, ValueWithUnit, VendorAuditEnable, VendorBillAccountChargeSplitSettingsResponse, VendorChild, VendorContractResponse, VendorDigestActualYearlyResponse, VendorDigestActualYearlyResponseCommodityData, VendorDigestActualYearlyResponseCommodityResults, VendorDigestActualYearlyResponseResults, VendorDigestService, VendorEdit, VendorRequest, VendorResponse, VendorService, VendorTypeChild, VendorUDFResponse, Vendors, VendorsAndRatesModule, VendorsAndRatesModuleClassPermission, VendorsClassPermission, VersionChild, VersionResponse, WaitHandle, WatticsDataPoint, WatticsDataPointChild, WatticsDataPointRequest, WatticsSite, WatticsSiteRequest, WattsChatCreate, WattsChatEdit, WattsChatMessageCreate, WattsChatMessageResponse, WattsChatResponse, WattsService, WeatherImportResult, WeatherImportSettings, WeatherSettings, WeatherSettingsClassPermission, WeatherStationChild, WeatherStationResponse, WeatherStationService, WeatherStationSummary, WebCaptureAccountResponse, WebCaptureCredentialDetailsResponse, WebCaptureCredentialResponse, WebCaptureCredentialService, WebCaptureMfaRefreshResponse, WebCapturePartnerResponse, WebCapturePasswordRefreshResponse, WebhookCreateRequest, WebhookCustomAction, WebhookEditRequest, WebhookEventTypeChild, WebhookLogDetailsResponse, WebhookLogResponse, WebhookResponse, WebhookService, WidgetCreate, WidgetEdit, WidgetResponse, WidgetSavingsYearlyResponse, WidgetSavingsYearlyResponseCommodityData, WidgetSavingsYearlyResponseResults, WidgetService, WorkflowDisplaySetting, WorkflowService, WorkflowSettingsRequest, WorkflowSettingsResponse, YearRange };
|
|
179522
179752
|
//# sourceMappingURL=energycap-energycap-sdk-angular.mjs.map
|