emissions-api-sdk 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -2
- package/dist/Constants.js +23 -1
- package/dist/api/Calculation.js +78 -15
- package/dist/api/Factor.js +99 -18
- package/dist/api/FactorSets.js +1 -1
- package/dist/api/Fugitive.js +76 -13
- package/dist/api/Location.js +76 -15
- package/dist/api/Mobile.js +65 -1
- package/dist/api/Stationary.js +78 -15
- package/dist/api/TransportationAndDistribution.js +77 -14
- package/dist/coverage/clover.xml +191 -81
- package/dist/coverage/coverage-final.json +11 -11
- package/dist/coverage/lcov-report/index.html +16 -16
- package/dist/coverage/lcov-report/src/Client.ts.html +23 -23
- package/dist/coverage/lcov-report/src/Constants.ts.html +82 -4
- package/dist/coverage/lcov-report/src/api/Calculation.ts.html +245 -26
- package/dist/coverage/lcov-report/src/api/Factor.ts.html +313 -34
- package/dist/coverage/lcov-report/src/api/FactorSets.ts.html +8 -5
- package/dist/coverage/lcov-report/src/api/Fugitive.ts.html +246 -24
- package/dist/coverage/lcov-report/src/api/Location.ts.html +245 -26
- package/dist/coverage/lcov-report/src/api/Mobile.ts.html +240 -12
- package/dist/coverage/lcov-report/src/api/Stationary.ts.html +248 -26
- package/dist/coverage/lcov-report/src/api/TransportationAndDistribution.ts.html +250 -25
- package/dist/coverage/lcov-report/src/api/index.html +25 -25
- package/dist/coverage/lcov-report/src/index.html +7 -7
- package/dist/coverage/lcov-report/src/request.ts.html +1 -1
- package/dist/coverage/lcov-report/src/utils.ts.html +5 -5
- package/dist/coverage/lcov-report/test/index.html +1 -1
- package/dist/coverage/lcov-report/test/mocks/CommonRequest.ts.html +1 -1
- package/dist/coverage/lcov-report/test/mocks/FactorRequest.ts.html +1 -1
- package/dist/coverage/lcov-report/test/mocks/GenericCalculationRequest.ts.html +1 -1
- package/dist/coverage/lcov-report/test/mocks/LocationRequest.ts.html +1 -1
- package/dist/coverage/lcov-report/test/mocks/SearchRequest.ts.html +1 -1
- package/dist/coverage/lcov-report/test/mocks/index.html +1 -1
- package/dist/coverage/lcov-report/test/testUtils.ts.html +1 -1
- package/dist/coverage/lcov.info +287 -133
- package/dist/interfaces/response/AreaResponse.js +2 -0
- package/dist/interfaces/response/EmissionResponse.js +2 -0
- package/dist/interfaces/response/EmissionResponseWithDetails.js +2 -0
- package/dist/interfaces/response/FactorResponse.js +2 -0
- package/dist/interfaces/response/FactorSetResponse.js +2 -0
- package/dist/interfaces/response/SearchResponse.js +2 -0
- package/dist/interfaces/response/TypeResponse.js +2 -0
- package/dist/interfaces/response/UnitResponse.js +2 -0
- package/dist/types/Constants.d.ts +22 -0
- package/dist/types/api/Calculation.d.ts +59 -16
- package/dist/types/api/Factor.d.ts +73 -20
- package/dist/types/api/FactorSets.d.ts +3 -2
- package/dist/types/api/Fugitive.d.ts +57 -14
- package/dist/types/api/Location.d.ts +57 -16
- package/dist/types/api/Mobile.d.ts +46 -2
- package/dist/types/api/Stationary.d.ts +59 -16
- package/dist/types/api/TransportationAndDistribution.d.ts +58 -15
- package/dist/types/index.d.ts +8 -0
- package/dist/types/interfaces/response/AreaResponse.d.ts +20 -0
- package/dist/types/interfaces/response/EmissionResponse.d.ts +31 -0
- package/dist/types/interfaces/response/EmissionResponseWithDetails.d.ts +144 -0
- package/dist/types/interfaces/response/FactorResponse.d.ts +53 -0
- package/dist/types/interfaces/response/FactorSetResponse.d.ts +38 -0
- package/dist/types/interfaces/response/SearchResponse.d.ts +41 -0
- package/dist/types/interfaces/response/TypeResponse.d.ts +7 -0
- package/dist/types/interfaces/response/UnitResponse.d.ts +7 -0
- package/docs/.nojekyll +0 -0
- package/docs/_sources/authentication.rst.txt +164 -0
- package/docs/_sources/client.rst.txt +137 -0
- package/docs/_sources/getting_started.rst.txt +164 -0
- package/docs/_sources/index.rst.txt +30 -0
- package/docs/_sources/reference.rst.txt +129 -0
- package/docs/_sources/sdk.rst.txt +13 -0
- package/docs/_sources/troubleshooting.rst.txt +486 -0
- package/docs/_static/basic.css +914 -0
- package/docs/_static/custom.css +16 -0
- package/docs/_static/debug.css +69 -0
- package/docs/_static/doctools.js +149 -0
- package/docs/_static/documentation_options.js +13 -0
- package/docs/_static/file.png +0 -0
- package/docs/_static/language_data.js +192 -0
- package/docs/_static/minus.png +0 -0
- package/docs/_static/plus.png +0 -0
- package/docs/_static/pygments.css +232 -0
- package/docs/_static/scripts/furo-extensions.js +0 -0
- package/docs/_static/scripts/furo.js +3 -0
- package/docs/_static/scripts/furo.js.LICENSE.txt +7 -0
- package/docs/_static/scripts/furo.js.map +1 -0
- package/docs/_static/searchtools.js +632 -0
- package/docs/_static/skeleton.css +296 -0
- package/docs/_static/sphinx_highlight.js +154 -0
- package/docs/_static/sphinx_js.css +0 -0
- package/docs/_static/styles/furo-extensions.css +2 -0
- package/docs/_static/styles/furo-extensions.css.map +1 -0
- package/docs/_static/styles/furo.css +2 -0
- package/docs/_static/styles/furo.css.map +1 -0
- package/docs/authentication.html +523 -0
- package/docs/client.html +477 -0
- package/docs/genindex.html +492 -0
- package/docs/getting_started.html +491 -0
- package/docs/index.html +357 -0
- package/docs/objects.inv +0 -0
- package/docs/reference.html +1584 -0
- package/docs/sdk.html +334 -0
- package/docs/search.html +297 -0
- package/docs/searchindex.js +1 -0
- package/docs/troubleshooting.html +786 -0
- package/package.json +1 -1
- package/sphinx-build/Makefile +49 -0
- package/sphinx-build/requirements.txt +5 -0
- package/sphinx-build/source/_static/custom.css +16 -0
- package/sphinx-build/source/authentication.rst +164 -0
- package/sphinx-build/source/client.rst +137 -0
- package/sphinx-build/source/conf.py +56 -0
- package/sphinx-build/source/getting_started.rst +164 -0
- package/sphinx-build/source/index.rst +30 -0
- package/sphinx-build/source/reference.rst +129 -0
- package/sphinx-build/source/sdk.rst +13 -0
- package/sphinx-build/source/troubleshooting.rst +486 -0
- package/src/Constants.ts +26 -0
- package/src/api/Calculation.ts +94 -20
- package/src/api/Factor.ts +122 -28
- package/src/api/FactorSets.ts +4 -3
- package/src/api/Fugitive.ts +93 -18
- package/src/api/Location.ts +94 -20
- package/src/api/Mobile.ts +83 -6
- package/src/api/Stationary.ts +95 -20
- package/src/api/TransportationAndDistribution.ts +95 -19
- package/src/index.ts +33 -1
- package/src/interfaces/response/AreaResponse.ts +25 -0
- package/src/interfaces/response/EmissionResponse.ts +44 -0
- package/src/interfaces/response/EmissionResponseWithDetails.ts +183 -0
- package/src/interfaces/response/FactorResponse.ts +78 -0
- package/src/interfaces/response/FactorSetResponse.ts +52 -0
- package/src/interfaces/response/SearchResponse.ts +52 -0
- package/src/interfaces/response/TypeResponse.ts +7 -0
- package/src/interfaces/response/UnitResponse.ts +7 -0
- package/test/apiTest.test.ts +173 -6
- package/dist/api/Factors.js +0 -98
- package/dist/api/FugitiveEmission.js +0 -40
- package/dist/api/GenericCalculation.js +0 -41
- package/dist/api/LocationEmission.js +0 -41
- package/dist/api/MobileEmission.js +0 -41
- package/dist/api/StationaryEmission.js +0 -41
- package/dist/api/TransportationDistributionEmission.js +0 -40
- package/dist/coverage/lcov-report/src/api/Factors.ts.html +0 -403
- package/dist/coverage/lcov-report/src/api/FugitiveEmission.ts.html +0 -214
- package/dist/coverage/lcov-report/src/api/GenericCalculation.ts.html +0 -217
- package/dist/coverage/lcov-report/src/api/LocationEmission.ts.html +0 -214
- package/dist/coverage/lcov-report/src/api/MobileEmission.ts.html +0 -220
- package/dist/coverage/lcov-report/src/api/StationaryEmission.ts.html +0 -220
- package/dist/coverage/lcov-report/src/api/TransportationDistributionEmission.ts.html +0 -211
- package/dist/types/api/Factors.d.ts +0 -68
- package/dist/types/api/FugitiveEmission.d.ts +0 -27
- package/dist/types/api/GenericCalculation.d.ts +0 -28
- package/dist/types/api/LocationEmission.d.ts +0 -28
- package/dist/types/api/MobileEmission.d.ts +0 -28
- package/dist/types/api/StationaryEmission.d.ts +0 -28
- package/dist/types/api/TransportationDistributionEmission.d.ts +0 -27
|
@@ -127,7 +127,7 @@ export default SearchPayload;
|
|
|
127
127
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
128
128
|
Code coverage generated by
|
|
129
129
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
130
|
-
at 2025-
|
|
130
|
+
at 2025-12-11T17:06:20.018Z
|
|
131
131
|
</div>
|
|
132
132
|
<script src="../../prettify.js"></script>
|
|
133
133
|
<script>
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
162
162
|
Code coverage generated by
|
|
163
163
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
164
|
-
at 2025-
|
|
164
|
+
at 2025-12-11T17:06:20.018Z
|
|
165
165
|
</div>
|
|
166
166
|
<script src="../../prettify.js"></script>
|
|
167
167
|
<script>
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
83
83
|
Code coverage generated by
|
|
84
84
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
85
|
-
at 2025-
|
|
85
|
+
at 2025-12-11T17:06:20.018Z
|
|
86
86
|
</div>
|
|
87
87
|
<script src="../prettify.js"></script>
|
|
88
88
|
<script>
|
package/dist/coverage/lcov.info
CHANGED
|
@@ -11,10 +11,10 @@ FN:214,(anonymous_8)
|
|
|
11
11
|
FN:236,(anonymous_9)
|
|
12
12
|
FNF:9
|
|
13
13
|
FNH:7
|
|
14
|
-
FNDA:
|
|
15
|
-
FNDA:
|
|
16
|
-
FNDA:
|
|
17
|
-
FNDA:
|
|
14
|
+
FNDA:35,(anonymous_1)
|
|
15
|
+
FNDA:38,(anonymous_2)
|
|
16
|
+
FNDA:62,(anonymous_3)
|
|
17
|
+
FNDA:67,(anonymous_4)
|
|
18
18
|
FNDA:3,(anonymous_5)
|
|
19
19
|
FNDA:2,(anonymous_6)
|
|
20
20
|
FNDA:0,(anonymous_7)
|
|
@@ -25,36 +25,36 @@ DA:3,4
|
|
|
25
25
|
DA:4,4
|
|
26
26
|
DA:6,4
|
|
27
27
|
DA:7,4
|
|
28
|
-
DA:24,
|
|
29
|
-
DA:25,
|
|
30
|
-
DA:26,
|
|
31
|
-
DA:27,
|
|
28
|
+
DA:24,35
|
|
29
|
+
DA:25,35
|
|
30
|
+
DA:26,35
|
|
31
|
+
DA:27,35
|
|
32
32
|
DA:28,1
|
|
33
33
|
DA:29,1
|
|
34
|
-
DA:31,
|
|
35
|
-
DA:32,
|
|
36
|
-
DA:35,
|
|
37
|
-
DA:36,
|
|
38
|
-
DA:37,
|
|
39
|
-
DA:38,
|
|
40
|
-
DA:39,
|
|
41
|
-
DA:40,
|
|
42
|
-
DA:78,
|
|
34
|
+
DA:31,34
|
|
35
|
+
DA:32,34
|
|
36
|
+
DA:35,35
|
|
37
|
+
DA:36,35
|
|
38
|
+
DA:37,35
|
|
39
|
+
DA:38,35
|
|
40
|
+
DA:39,35
|
|
41
|
+
DA:40,35
|
|
42
|
+
DA:78,38
|
|
43
43
|
DA:79,1
|
|
44
|
-
DA:83,
|
|
44
|
+
DA:83,37
|
|
45
45
|
DA:84,1
|
|
46
|
-
DA:88,
|
|
46
|
+
DA:88,36
|
|
47
47
|
DA:89,1
|
|
48
|
-
DA:94,
|
|
49
|
-
DA:96,
|
|
48
|
+
DA:94,35
|
|
49
|
+
DA:96,35
|
|
50
50
|
DA:97,1
|
|
51
51
|
DA:98,1
|
|
52
|
-
DA:99,
|
|
53
|
-
DA:100,
|
|
54
|
-
DA:114,
|
|
55
|
-
DA:136,
|
|
52
|
+
DA:99,34
|
|
53
|
+
DA:100,35
|
|
54
|
+
DA:114,62
|
|
55
|
+
DA:136,67
|
|
56
56
|
DA:137,1
|
|
57
|
-
DA:141,
|
|
57
|
+
DA:141,66
|
|
58
58
|
DA:157,3
|
|
59
59
|
DA:158,2
|
|
60
60
|
DA:159,2
|
|
@@ -74,38 +74,38 @@ LH:47
|
|
|
74
74
|
BRDA:22,0,0,0
|
|
75
75
|
BRDA:24,1,0,1
|
|
76
76
|
BRDA:24,2,0,1
|
|
77
|
-
BRDA:24,3,0,
|
|
77
|
+
BRDA:24,3,0,35
|
|
78
78
|
BRDA:27,4,0,1
|
|
79
|
-
BRDA:27,4,1,
|
|
79
|
+
BRDA:27,4,1,34
|
|
80
80
|
BRDA:37,5,0,0
|
|
81
|
-
BRDA:37,5,1,
|
|
82
|
-
BRDA:37,6,0,
|
|
83
|
-
BRDA:37,6,1,
|
|
81
|
+
BRDA:37,5,1,35
|
|
82
|
+
BRDA:37,6,0,35
|
|
83
|
+
BRDA:37,6,1,35
|
|
84
84
|
BRDA:38,7,0,0
|
|
85
|
-
BRDA:38,7,1,
|
|
86
|
-
BRDA:38,8,0,
|
|
87
|
-
BRDA:38,8,1,
|
|
85
|
+
BRDA:38,7,1,35
|
|
86
|
+
BRDA:38,8,0,35
|
|
87
|
+
BRDA:38,8,1,35
|
|
88
88
|
BRDA:40,9,0,0
|
|
89
|
-
BRDA:40,9,1,
|
|
89
|
+
BRDA:40,9,1,35
|
|
90
90
|
BRDA:78,10,0,1
|
|
91
|
-
BRDA:78,10,1,
|
|
92
|
-
BRDA:78,11,0,
|
|
91
|
+
BRDA:78,10,1,37
|
|
92
|
+
BRDA:78,11,0,38
|
|
93
93
|
BRDA:78,11,1,1
|
|
94
94
|
BRDA:83,12,0,1
|
|
95
|
-
BRDA:83,12,1,
|
|
96
|
-
BRDA:83,13,0,
|
|
95
|
+
BRDA:83,12,1,36
|
|
96
|
+
BRDA:83,13,0,37
|
|
97
97
|
BRDA:83,13,1,2
|
|
98
98
|
BRDA:88,14,0,1
|
|
99
|
-
BRDA:88,14,1,
|
|
100
|
-
BRDA:88,15,0,
|
|
101
|
-
BRDA:88,15,1,
|
|
102
|
-
BRDA:88,15,2,
|
|
99
|
+
BRDA:88,14,1,35
|
|
100
|
+
BRDA:88,15,0,36
|
|
101
|
+
BRDA:88,15,1,35
|
|
102
|
+
BRDA:88,15,2,34
|
|
103
103
|
BRDA:96,16,0,1
|
|
104
|
-
BRDA:96,16,1,
|
|
105
|
-
BRDA:96,17,0,
|
|
104
|
+
BRDA:96,16,1,34
|
|
105
|
+
BRDA:96,17,0,35
|
|
106
106
|
BRDA:96,17,1,1
|
|
107
107
|
BRDA:136,18,0,1
|
|
108
|
-
BRDA:136,18,1,
|
|
108
|
+
BRDA:136,18,1,66
|
|
109
109
|
BRDA:157,19,0,2
|
|
110
110
|
BRDA:157,19,1,1
|
|
111
111
|
BRDA:159,20,0,1
|
|
@@ -134,13 +134,35 @@ DA:8,4
|
|
|
134
134
|
DA:9,4
|
|
135
135
|
DA:10,4
|
|
136
136
|
DA:11,4
|
|
137
|
-
DA:12,4
|
|
138
137
|
DA:13,4
|
|
139
138
|
DA:14,4
|
|
140
139
|
DA:15,4
|
|
141
140
|
DA:16,4
|
|
142
|
-
|
|
143
|
-
|
|
141
|
+
DA:17,4
|
|
142
|
+
DA:18,4
|
|
143
|
+
DA:19,4
|
|
144
|
+
DA:21,4
|
|
145
|
+
DA:22,4
|
|
146
|
+
DA:23,4
|
|
147
|
+
DA:24,4
|
|
148
|
+
DA:25,4
|
|
149
|
+
DA:26,4
|
|
150
|
+
DA:27,4
|
|
151
|
+
DA:28,4
|
|
152
|
+
DA:30,4
|
|
153
|
+
DA:31,4
|
|
154
|
+
DA:32,4
|
|
155
|
+
DA:33,4
|
|
156
|
+
DA:34,4
|
|
157
|
+
DA:35,4
|
|
158
|
+
DA:36,4
|
|
159
|
+
DA:38,4
|
|
160
|
+
DA:39,4
|
|
161
|
+
DA:40,4
|
|
162
|
+
DA:41,4
|
|
163
|
+
DA:42,4
|
|
164
|
+
LF:38
|
|
165
|
+
LH:38
|
|
144
166
|
BRF:0
|
|
145
167
|
BRH:0
|
|
146
168
|
end_of_record
|
|
@@ -169,74 +191,116 @@ SF:src/utils.ts
|
|
|
169
191
|
FN:14,findExpiryTime
|
|
170
192
|
FNF:1
|
|
171
193
|
FNH:1
|
|
172
|
-
FNDA:
|
|
194
|
+
FNDA:33,findExpiryTime
|
|
173
195
|
DA:14,4
|
|
174
|
-
DA:15,
|
|
175
|
-
DA:16,
|
|
176
|
-
DA:17,
|
|
177
|
-
DA:18,
|
|
196
|
+
DA:15,33
|
|
197
|
+
DA:16,33
|
|
198
|
+
DA:17,33
|
|
199
|
+
DA:18,33
|
|
178
200
|
LF:5
|
|
179
201
|
LH:5
|
|
180
202
|
BRDA:17,0,0,0
|
|
181
|
-
BRDA:17,0,1,
|
|
203
|
+
BRDA:17,0,1,33
|
|
182
204
|
BRF:2
|
|
183
205
|
BRH:1
|
|
184
206
|
end_of_record
|
|
185
207
|
TN:
|
|
186
208
|
SF:src/api/Calculation.ts
|
|
187
|
-
FN:
|
|
188
|
-
|
|
189
|
-
|
|
209
|
+
FN:38,calculate
|
|
210
|
+
FN:62,getTypes
|
|
211
|
+
FN:82,getArea
|
|
212
|
+
FN:107,getUnits
|
|
213
|
+
FNF:4
|
|
214
|
+
FNH:4
|
|
190
215
|
FNDA:1,calculate
|
|
216
|
+
FNDA:1,getTypes
|
|
217
|
+
FNDA:1,getArea
|
|
218
|
+
FNDA:1,getUnits
|
|
191
219
|
DA:1,1
|
|
192
220
|
DA:2,1
|
|
193
|
-
DA:
|
|
194
|
-
DA:
|
|
195
|
-
DA:
|
|
196
|
-
DA:
|
|
197
|
-
DA:
|
|
198
|
-
|
|
199
|
-
|
|
221
|
+
DA:9,1
|
|
222
|
+
DA:38,1
|
|
223
|
+
DA:41,1
|
|
224
|
+
DA:42,1
|
|
225
|
+
DA:44,1
|
|
226
|
+
DA:62,1
|
|
227
|
+
DA:63,1
|
|
228
|
+
DA:64,1
|
|
229
|
+
DA:66,1
|
|
230
|
+
DA:82,1
|
|
231
|
+
DA:83,1
|
|
232
|
+
DA:84,1
|
|
233
|
+
DA:86,1
|
|
234
|
+
DA:107,1
|
|
235
|
+
DA:110,1
|
|
236
|
+
DA:111,1
|
|
237
|
+
DA:113,1
|
|
238
|
+
LF:19
|
|
239
|
+
LH:19
|
|
200
240
|
BRF:0
|
|
201
241
|
BRH:0
|
|
202
242
|
end_of_record
|
|
203
243
|
TN:
|
|
204
244
|
SF:src/api/Factor.ts
|
|
205
|
-
FN:
|
|
206
|
-
FN:
|
|
207
|
-
|
|
208
|
-
|
|
245
|
+
FN:44,retrieveFactor
|
|
246
|
+
FN:79,search
|
|
247
|
+
FN:102,getTypes
|
|
248
|
+
FN:123,getSearchArea
|
|
249
|
+
FN:144,getArea
|
|
250
|
+
FN:169,getUnits
|
|
251
|
+
FNF:6
|
|
252
|
+
FNH:6
|
|
209
253
|
FNDA:1,retrieveFactor
|
|
210
254
|
FNDA:1,search
|
|
255
|
+
FNDA:1,getTypes
|
|
256
|
+
FNDA:1,getSearchArea
|
|
257
|
+
FNDA:1,getArea
|
|
258
|
+
FNDA:1,getUnits
|
|
211
259
|
DA:1,1
|
|
212
260
|
DA:2,1
|
|
213
|
-
DA:
|
|
214
|
-
DA:40,1
|
|
215
|
-
DA:43,1
|
|
261
|
+
DA:9,1
|
|
216
262
|
DA:44,1
|
|
217
|
-
DA:
|
|
218
|
-
DA:
|
|
219
|
-
DA:
|
|
263
|
+
DA:47,1
|
|
264
|
+
DA:48,1
|
|
265
|
+
DA:50,1
|
|
220
266
|
DA:79,1
|
|
221
|
-
DA:
|
|
222
|
-
|
|
223
|
-
|
|
267
|
+
DA:82,1
|
|
268
|
+
DA:83,1
|
|
269
|
+
DA:85,1
|
|
270
|
+
DA:102,1
|
|
271
|
+
DA:104,1
|
|
272
|
+
DA:105,1
|
|
273
|
+
DA:107,1
|
|
274
|
+
DA:123,1
|
|
275
|
+
DA:125,1
|
|
276
|
+
DA:126,1
|
|
277
|
+
DA:128,1
|
|
278
|
+
DA:144,1
|
|
279
|
+
DA:145,1
|
|
280
|
+
DA:146,1
|
|
281
|
+
DA:148,1
|
|
282
|
+
DA:169,1
|
|
283
|
+
DA:172,1
|
|
284
|
+
DA:173,1
|
|
285
|
+
DA:175,1
|
|
286
|
+
LF:27
|
|
287
|
+
LH:27
|
|
224
288
|
BRF:0
|
|
225
289
|
BRH:0
|
|
226
290
|
end_of_record
|
|
227
291
|
TN:
|
|
228
292
|
SF:src/api/FactorSets.ts
|
|
229
|
-
FN:
|
|
293
|
+
FN:16,get
|
|
230
294
|
FNF:1
|
|
231
295
|
FNH:1
|
|
232
296
|
FNDA:1,get
|
|
233
297
|
DA:1,1
|
|
234
298
|
DA:2,1
|
|
235
|
-
DA:
|
|
236
|
-
DA:
|
|
237
|
-
DA:17,1
|
|
299
|
+
DA:4,1
|
|
300
|
+
DA:16,1
|
|
238
301
|
DA:18,1
|
|
239
|
-
DA:
|
|
302
|
+
DA:19,1
|
|
303
|
+
DA:21,1
|
|
240
304
|
LF:7
|
|
241
305
|
LH:7
|
|
242
306
|
BRF:0
|
|
@@ -244,91 +308,181 @@ BRH:0
|
|
|
244
308
|
end_of_record
|
|
245
309
|
TN:
|
|
246
310
|
SF:src/api/Fugitive.ts
|
|
247
|
-
FN:
|
|
248
|
-
|
|
249
|
-
|
|
311
|
+
FN:37,calculate
|
|
312
|
+
FN:60,getTypes
|
|
313
|
+
FN:81,getArea
|
|
314
|
+
FN:107,getUnits
|
|
315
|
+
FNF:4
|
|
316
|
+
FNH:4
|
|
250
317
|
FNDA:1,calculate
|
|
318
|
+
FNDA:1,getTypes
|
|
319
|
+
FNDA:1,getArea
|
|
320
|
+
FNDA:1,getUnits
|
|
251
321
|
DA:1,1
|
|
252
322
|
DA:2,1
|
|
253
|
-
DA:
|
|
254
|
-
DA:
|
|
255
|
-
DA:
|
|
256
|
-
DA:
|
|
257
|
-
DA:
|
|
258
|
-
|
|
259
|
-
|
|
323
|
+
DA:9,1
|
|
324
|
+
DA:37,1
|
|
325
|
+
DA:40,1
|
|
326
|
+
DA:41,1
|
|
327
|
+
DA:43,1
|
|
328
|
+
DA:60,1
|
|
329
|
+
DA:62,1
|
|
330
|
+
DA:63,1
|
|
331
|
+
DA:65,1
|
|
332
|
+
DA:81,1
|
|
333
|
+
DA:83,1
|
|
334
|
+
DA:84,1
|
|
335
|
+
DA:86,1
|
|
336
|
+
DA:107,1
|
|
337
|
+
DA:110,1
|
|
338
|
+
DA:111,1
|
|
339
|
+
DA:113,1
|
|
340
|
+
LF:19
|
|
341
|
+
LH:19
|
|
260
342
|
BRF:0
|
|
261
343
|
BRH:0
|
|
262
344
|
end_of_record
|
|
263
345
|
TN:
|
|
264
346
|
SF:src/api/Location.ts
|
|
265
|
-
FN:
|
|
266
|
-
|
|
267
|
-
|
|
347
|
+
FN:37,calculate
|
|
348
|
+
FN:62,getTypes
|
|
349
|
+
FN:83,getArea
|
|
350
|
+
FN:106,getUnits
|
|
351
|
+
FNF:4
|
|
352
|
+
FNH:4
|
|
268
353
|
FNDA:1,calculate
|
|
354
|
+
FNDA:1,getTypes
|
|
355
|
+
FNDA:1,getArea
|
|
356
|
+
FNDA:1,getUnits
|
|
269
357
|
DA:1,1
|
|
270
358
|
DA:2,1
|
|
271
|
-
DA:
|
|
272
|
-
DA:
|
|
273
|
-
DA:
|
|
274
|
-
DA:
|
|
275
|
-
DA:
|
|
276
|
-
|
|
277
|
-
|
|
359
|
+
DA:9,1
|
|
360
|
+
DA:37,1
|
|
361
|
+
DA:40,1
|
|
362
|
+
DA:41,1
|
|
363
|
+
DA:43,1
|
|
364
|
+
DA:62,1
|
|
365
|
+
DA:64,1
|
|
366
|
+
DA:65,1
|
|
367
|
+
DA:67,1
|
|
368
|
+
DA:83,1
|
|
369
|
+
DA:85,1
|
|
370
|
+
DA:86,1
|
|
371
|
+
DA:88,1
|
|
372
|
+
DA:106,1
|
|
373
|
+
DA:109,1
|
|
374
|
+
DA:110,1
|
|
375
|
+
DA:112,1
|
|
376
|
+
LF:19
|
|
377
|
+
LH:19
|
|
278
378
|
BRF:0
|
|
279
379
|
BRH:0
|
|
280
380
|
end_of_record
|
|
281
381
|
TN:
|
|
282
382
|
SF:src/api/Mobile.ts
|
|
283
|
-
FN:
|
|
284
|
-
|
|
285
|
-
|
|
383
|
+
FN:39,calculate
|
|
384
|
+
FN:64,getTypes
|
|
385
|
+
FN:85,getArea
|
|
386
|
+
FN:111,getUnits
|
|
387
|
+
FNF:4
|
|
388
|
+
FNH:4
|
|
286
389
|
FNDA:1,calculate
|
|
390
|
+
FNDA:1,getTypes
|
|
391
|
+
FNDA:1,getArea
|
|
392
|
+
FNDA:1,getUnits
|
|
287
393
|
DA:1,1
|
|
288
394
|
DA:2,1
|
|
289
|
-
DA:
|
|
290
|
-
DA:
|
|
291
|
-
DA:
|
|
292
|
-
DA:
|
|
293
|
-
DA:
|
|
294
|
-
|
|
295
|
-
|
|
395
|
+
DA:9,1
|
|
396
|
+
DA:39,1
|
|
397
|
+
DA:42,1
|
|
398
|
+
DA:43,1
|
|
399
|
+
DA:45,1
|
|
400
|
+
DA:64,1
|
|
401
|
+
DA:66,1
|
|
402
|
+
DA:67,1
|
|
403
|
+
DA:69,1
|
|
404
|
+
DA:85,1
|
|
405
|
+
DA:87,1
|
|
406
|
+
DA:88,1
|
|
407
|
+
DA:90,1
|
|
408
|
+
DA:111,1
|
|
409
|
+
DA:114,1
|
|
410
|
+
DA:115,1
|
|
411
|
+
DA:117,1
|
|
412
|
+
LF:19
|
|
413
|
+
LH:19
|
|
296
414
|
BRF:0
|
|
297
415
|
BRH:0
|
|
298
416
|
end_of_record
|
|
299
417
|
TN:
|
|
300
418
|
SF:src/api/Stationary.ts
|
|
301
|
-
FN:
|
|
302
|
-
|
|
303
|
-
|
|
419
|
+
FN:39,calculate
|
|
420
|
+
FN:62,getTypes
|
|
421
|
+
FN:83,getArea
|
|
422
|
+
FN:109,getUnits
|
|
423
|
+
FNF:4
|
|
424
|
+
FNH:4
|
|
304
425
|
FNDA:1,calculate
|
|
426
|
+
FNDA:1,getTypes
|
|
427
|
+
FNDA:1,getArea
|
|
428
|
+
FNDA:1,getUnits
|
|
305
429
|
DA:1,1
|
|
306
430
|
DA:2,1
|
|
307
|
-
DA:
|
|
308
|
-
DA:
|
|
309
|
-
DA:
|
|
310
|
-
DA:
|
|
311
|
-
DA:
|
|
312
|
-
|
|
313
|
-
|
|
431
|
+
DA:9,1
|
|
432
|
+
DA:39,1
|
|
433
|
+
DA:42,1
|
|
434
|
+
DA:43,1
|
|
435
|
+
DA:45,1
|
|
436
|
+
DA:62,1
|
|
437
|
+
DA:64,1
|
|
438
|
+
DA:65,1
|
|
439
|
+
DA:67,1
|
|
440
|
+
DA:83,1
|
|
441
|
+
DA:85,1
|
|
442
|
+
DA:86,1
|
|
443
|
+
DA:88,1
|
|
444
|
+
DA:109,1
|
|
445
|
+
DA:112,1
|
|
446
|
+
DA:113,1
|
|
447
|
+
DA:115,1
|
|
448
|
+
LF:19
|
|
449
|
+
LH:19
|
|
314
450
|
BRF:0
|
|
315
451
|
BRH:0
|
|
316
452
|
end_of_record
|
|
317
453
|
TN:
|
|
318
454
|
SF:src/api/TransportationAndDistribution.ts
|
|
319
|
-
FN:
|
|
320
|
-
|
|
321
|
-
|
|
455
|
+
FN:36,calculate
|
|
456
|
+
FN:60,getTypes
|
|
457
|
+
FN:81,getArea
|
|
458
|
+
FN:107,getUnits
|
|
459
|
+
FNF:4
|
|
460
|
+
FNH:4
|
|
322
461
|
FNDA:1,calculate
|
|
462
|
+
FNDA:1,getTypes
|
|
463
|
+
FNDA:1,getArea
|
|
464
|
+
FNDA:1,getUnits
|
|
323
465
|
DA:1,1
|
|
324
466
|
DA:2,1
|
|
325
|
-
DA:
|
|
326
|
-
DA:
|
|
327
|
-
DA:
|
|
328
|
-
DA:
|
|
329
|
-
DA:
|
|
330
|
-
|
|
331
|
-
|
|
467
|
+
DA:9,1
|
|
468
|
+
DA:36,1
|
|
469
|
+
DA:39,1
|
|
470
|
+
DA:40,1
|
|
471
|
+
DA:42,1
|
|
472
|
+
DA:60,1
|
|
473
|
+
DA:62,1
|
|
474
|
+
DA:63,1
|
|
475
|
+
DA:65,1
|
|
476
|
+
DA:81,1
|
|
477
|
+
DA:83,1
|
|
478
|
+
DA:84,1
|
|
479
|
+
DA:86,1
|
|
480
|
+
DA:107,1
|
|
481
|
+
DA:110,1
|
|
482
|
+
DA:111,1
|
|
483
|
+
DA:113,1
|
|
484
|
+
LF:19
|
|
485
|
+
LH:19
|
|
332
486
|
BRF:0
|
|
333
487
|
BRH:0
|
|
334
488
|
end_of_record
|
|
@@ -9,6 +9,28 @@ export declare const TRANSPORTATION_AND_DISTRIBUTION_API_PATH = "/v3/carbon/tran
|
|
|
9
9
|
export declare const FACTOR_API_PATH = "/v3/carbon/factor";
|
|
10
10
|
export declare const FACTOR_SET_API_PATH = "/v3/carbon/factorset";
|
|
11
11
|
export declare const SEARCH_API_PATH = "/v3/carbon/factor/search";
|
|
12
|
+
export declare const CALCULATION_TYPES = "/v3/carbon/calculation/types";
|
|
13
|
+
export declare const LOCATION_TYPES = "/v3/carbon/location/types";
|
|
14
|
+
export declare const FUGITIVE_API_TYPES = "/v3/carbon/fugitive/types";
|
|
15
|
+
export declare const MOBILE_API_TYPES = "/v3/carbon/mobile/types";
|
|
16
|
+
export declare const STATIONARY_API_TYPES = "/v3/carbon/stationary/types";
|
|
17
|
+
export declare const FACTOR_API_TYPES = "/v3/carbon/factor/types";
|
|
18
|
+
export declare const TRANSPORTATION_AND_DISTRIBUTION_API_TYPES = "/v3/carbon/transportation-and-distribution/types";
|
|
19
|
+
export declare const FUGITIVE_API_AREA = "/v3/carbon/fugitive/area";
|
|
20
|
+
export declare const GENERAL_API_AREA = "/v3/carbon/calculation/area";
|
|
21
|
+
export declare const LOCATION_API_AREA = "/v3/carbon/location/area";
|
|
22
|
+
export declare const MOBILE_API_AREA = "/v3/carbon/mobile/area";
|
|
23
|
+
export declare const STATIONARY_API_AREA = "/v3/carbon/stationary/area";
|
|
24
|
+
export declare const TRANSPORTATION_AND_DISTRIBUTION_API_AREA = "/v3/carbon/transportation-and-distribution/area";
|
|
25
|
+
export declare const SEARCH_API_AREA = "/v3/carbon/factor/search/area";
|
|
26
|
+
export declare const FACTOR_API_AREA = "/v3/carbon/factor/area";
|
|
27
|
+
export declare const FUGITIVE_API_UNITS = "/v3/carbon/fugitive/units";
|
|
28
|
+
export declare const LOCATION_API_UNITS = "/v3/carbon/location/units";
|
|
29
|
+
export declare const MOBILE_API_UNITS = "/v3/carbon/mobile/units";
|
|
30
|
+
export declare const STATIONARY_API_UNITS = "/v3/carbon/stationary/units";
|
|
31
|
+
export declare const GENERAL_API_UNITS = "/v3/carbon/calculation/units";
|
|
32
|
+
export declare const FACTOR_API_UNITS = "/v3/carbon/factor/units";
|
|
33
|
+
export declare const TRANSPORTATION_AND_DISTRIBUTION_API_UNITS = "/v3/carbon/transportation-and-distribution/units";
|
|
12
34
|
export declare const GET = "GET";
|
|
13
35
|
export declare const POST = "POST";
|
|
14
36
|
export declare const CLIENT_SOURCE_HEADER = "X-Client-Source";
|