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.
Files changed (155) hide show
  1. package/README.md +33 -2
  2. package/dist/Constants.js +23 -1
  3. package/dist/api/Calculation.js +78 -15
  4. package/dist/api/Factor.js +99 -18
  5. package/dist/api/FactorSets.js +1 -1
  6. package/dist/api/Fugitive.js +76 -13
  7. package/dist/api/Location.js +76 -15
  8. package/dist/api/Mobile.js +65 -1
  9. package/dist/api/Stationary.js +78 -15
  10. package/dist/api/TransportationAndDistribution.js +77 -14
  11. package/dist/coverage/clover.xml +191 -81
  12. package/dist/coverage/coverage-final.json +11 -11
  13. package/dist/coverage/lcov-report/index.html +16 -16
  14. package/dist/coverage/lcov-report/src/Client.ts.html +23 -23
  15. package/dist/coverage/lcov-report/src/Constants.ts.html +82 -4
  16. package/dist/coverage/lcov-report/src/api/Calculation.ts.html +245 -26
  17. package/dist/coverage/lcov-report/src/api/Factor.ts.html +313 -34
  18. package/dist/coverage/lcov-report/src/api/FactorSets.ts.html +8 -5
  19. package/dist/coverage/lcov-report/src/api/Fugitive.ts.html +246 -24
  20. package/dist/coverage/lcov-report/src/api/Location.ts.html +245 -26
  21. package/dist/coverage/lcov-report/src/api/Mobile.ts.html +240 -12
  22. package/dist/coverage/lcov-report/src/api/Stationary.ts.html +248 -26
  23. package/dist/coverage/lcov-report/src/api/TransportationAndDistribution.ts.html +250 -25
  24. package/dist/coverage/lcov-report/src/api/index.html +25 -25
  25. package/dist/coverage/lcov-report/src/index.html +7 -7
  26. package/dist/coverage/lcov-report/src/request.ts.html +1 -1
  27. package/dist/coverage/lcov-report/src/utils.ts.html +5 -5
  28. package/dist/coverage/lcov-report/test/index.html +1 -1
  29. package/dist/coverage/lcov-report/test/mocks/CommonRequest.ts.html +1 -1
  30. package/dist/coverage/lcov-report/test/mocks/FactorRequest.ts.html +1 -1
  31. package/dist/coverage/lcov-report/test/mocks/GenericCalculationRequest.ts.html +1 -1
  32. package/dist/coverage/lcov-report/test/mocks/LocationRequest.ts.html +1 -1
  33. package/dist/coverage/lcov-report/test/mocks/SearchRequest.ts.html +1 -1
  34. package/dist/coverage/lcov-report/test/mocks/index.html +1 -1
  35. package/dist/coverage/lcov-report/test/testUtils.ts.html +1 -1
  36. package/dist/coverage/lcov.info +287 -133
  37. package/dist/interfaces/response/AreaResponse.js +2 -0
  38. package/dist/interfaces/response/EmissionResponse.js +2 -0
  39. package/dist/interfaces/response/EmissionResponseWithDetails.js +2 -0
  40. package/dist/interfaces/response/FactorResponse.js +2 -0
  41. package/dist/interfaces/response/FactorSetResponse.js +2 -0
  42. package/dist/interfaces/response/SearchResponse.js +2 -0
  43. package/dist/interfaces/response/TypeResponse.js +2 -0
  44. package/dist/interfaces/response/UnitResponse.js +2 -0
  45. package/dist/types/Constants.d.ts +22 -0
  46. package/dist/types/api/Calculation.d.ts +59 -16
  47. package/dist/types/api/Factor.d.ts +73 -20
  48. package/dist/types/api/FactorSets.d.ts +3 -2
  49. package/dist/types/api/Fugitive.d.ts +57 -14
  50. package/dist/types/api/Location.d.ts +57 -16
  51. package/dist/types/api/Mobile.d.ts +46 -2
  52. package/dist/types/api/Stationary.d.ts +59 -16
  53. package/dist/types/api/TransportationAndDistribution.d.ts +58 -15
  54. package/dist/types/index.d.ts +8 -0
  55. package/dist/types/interfaces/response/AreaResponse.d.ts +20 -0
  56. package/dist/types/interfaces/response/EmissionResponse.d.ts +31 -0
  57. package/dist/types/interfaces/response/EmissionResponseWithDetails.d.ts +144 -0
  58. package/dist/types/interfaces/response/FactorResponse.d.ts +53 -0
  59. package/dist/types/interfaces/response/FactorSetResponse.d.ts +38 -0
  60. package/dist/types/interfaces/response/SearchResponse.d.ts +41 -0
  61. package/dist/types/interfaces/response/TypeResponse.d.ts +7 -0
  62. package/dist/types/interfaces/response/UnitResponse.d.ts +7 -0
  63. package/docs/.nojekyll +0 -0
  64. package/docs/_sources/authentication.rst.txt +164 -0
  65. package/docs/_sources/client.rst.txt +137 -0
  66. package/docs/_sources/getting_started.rst.txt +164 -0
  67. package/docs/_sources/index.rst.txt +30 -0
  68. package/docs/_sources/reference.rst.txt +129 -0
  69. package/docs/_sources/sdk.rst.txt +13 -0
  70. package/docs/_sources/troubleshooting.rst.txt +486 -0
  71. package/docs/_static/basic.css +914 -0
  72. package/docs/_static/custom.css +16 -0
  73. package/docs/_static/debug.css +69 -0
  74. package/docs/_static/doctools.js +149 -0
  75. package/docs/_static/documentation_options.js +13 -0
  76. package/docs/_static/file.png +0 -0
  77. package/docs/_static/language_data.js +192 -0
  78. package/docs/_static/minus.png +0 -0
  79. package/docs/_static/plus.png +0 -0
  80. package/docs/_static/pygments.css +232 -0
  81. package/docs/_static/scripts/furo-extensions.js +0 -0
  82. package/docs/_static/scripts/furo.js +3 -0
  83. package/docs/_static/scripts/furo.js.LICENSE.txt +7 -0
  84. package/docs/_static/scripts/furo.js.map +1 -0
  85. package/docs/_static/searchtools.js +632 -0
  86. package/docs/_static/skeleton.css +296 -0
  87. package/docs/_static/sphinx_highlight.js +154 -0
  88. package/docs/_static/sphinx_js.css +0 -0
  89. package/docs/_static/styles/furo-extensions.css +2 -0
  90. package/docs/_static/styles/furo-extensions.css.map +1 -0
  91. package/docs/_static/styles/furo.css +2 -0
  92. package/docs/_static/styles/furo.css.map +1 -0
  93. package/docs/authentication.html +523 -0
  94. package/docs/client.html +477 -0
  95. package/docs/genindex.html +492 -0
  96. package/docs/getting_started.html +491 -0
  97. package/docs/index.html +357 -0
  98. package/docs/objects.inv +0 -0
  99. package/docs/reference.html +1584 -0
  100. package/docs/sdk.html +334 -0
  101. package/docs/search.html +297 -0
  102. package/docs/searchindex.js +1 -0
  103. package/docs/troubleshooting.html +786 -0
  104. package/package.json +1 -1
  105. package/sphinx-build/Makefile +49 -0
  106. package/sphinx-build/requirements.txt +5 -0
  107. package/sphinx-build/source/_static/custom.css +16 -0
  108. package/sphinx-build/source/authentication.rst +164 -0
  109. package/sphinx-build/source/client.rst +137 -0
  110. package/sphinx-build/source/conf.py +56 -0
  111. package/sphinx-build/source/getting_started.rst +164 -0
  112. package/sphinx-build/source/index.rst +30 -0
  113. package/sphinx-build/source/reference.rst +129 -0
  114. package/sphinx-build/source/sdk.rst +13 -0
  115. package/sphinx-build/source/troubleshooting.rst +486 -0
  116. package/src/Constants.ts +26 -0
  117. package/src/api/Calculation.ts +94 -20
  118. package/src/api/Factor.ts +122 -28
  119. package/src/api/FactorSets.ts +4 -3
  120. package/src/api/Fugitive.ts +93 -18
  121. package/src/api/Location.ts +94 -20
  122. package/src/api/Mobile.ts +83 -6
  123. package/src/api/Stationary.ts +95 -20
  124. package/src/api/TransportationAndDistribution.ts +95 -19
  125. package/src/index.ts +33 -1
  126. package/src/interfaces/response/AreaResponse.ts +25 -0
  127. package/src/interfaces/response/EmissionResponse.ts +44 -0
  128. package/src/interfaces/response/EmissionResponseWithDetails.ts +183 -0
  129. package/src/interfaces/response/FactorResponse.ts +78 -0
  130. package/src/interfaces/response/FactorSetResponse.ts +52 -0
  131. package/src/interfaces/response/SearchResponse.ts +52 -0
  132. package/src/interfaces/response/TypeResponse.ts +7 -0
  133. package/src/interfaces/response/UnitResponse.ts +7 -0
  134. package/test/apiTest.test.ts +173 -6
  135. package/dist/api/Factors.js +0 -98
  136. package/dist/api/FugitiveEmission.js +0 -40
  137. package/dist/api/GenericCalculation.js +0 -41
  138. package/dist/api/LocationEmission.js +0 -41
  139. package/dist/api/MobileEmission.js +0 -41
  140. package/dist/api/StationaryEmission.js +0 -41
  141. package/dist/api/TransportationDistributionEmission.js +0 -40
  142. package/dist/coverage/lcov-report/src/api/Factors.ts.html +0 -403
  143. package/dist/coverage/lcov-report/src/api/FugitiveEmission.ts.html +0 -214
  144. package/dist/coverage/lcov-report/src/api/GenericCalculation.ts.html +0 -217
  145. package/dist/coverage/lcov-report/src/api/LocationEmission.ts.html +0 -214
  146. package/dist/coverage/lcov-report/src/api/MobileEmission.ts.html +0 -220
  147. package/dist/coverage/lcov-report/src/api/StationaryEmission.ts.html +0 -220
  148. package/dist/coverage/lcov-report/src/api/TransportationDistributionEmission.ts.html +0 -211
  149. package/dist/types/api/Factors.d.ts +0 -68
  150. package/dist/types/api/FugitiveEmission.d.ts +0 -27
  151. package/dist/types/api/GenericCalculation.d.ts +0 -28
  152. package/dist/types/api/LocationEmission.d.ts +0 -28
  153. package/dist/types/api/MobileEmission.d.ts +0 -28
  154. package/dist/types/api/StationaryEmission.d.ts +0 -28
  155. 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-09-29T10:08:48.327Z
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-09-29T10:08:48.327Z
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-09-29T10:08:48.327Z
85
+ at 2025-12-11T17:06:20.018Z
86
86
  </div>
87
87
  <script src="../prettify.js"></script>
88
88
  <script>
@@ -11,10 +11,10 @@ FN:214,(anonymous_8)
11
11
  FN:236,(anonymous_9)
12
12
  FNF:9
13
13
  FNH:7
14
- FNDA:13,(anonymous_1)
15
- FNDA:16,(anonymous_2)
16
- FNDA:18,(anonymous_3)
17
- FNDA:23,(anonymous_4)
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,13
29
- DA:25,13
30
- DA:26,13
31
- DA:27,13
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,12
35
- DA:32,12
36
- DA:35,13
37
- DA:36,13
38
- DA:37,13
39
- DA:38,13
40
- DA:39,13
41
- DA:40,13
42
- DA:78,16
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,15
44
+ DA:83,37
45
45
  DA:84,1
46
- DA:88,14
46
+ DA:88,36
47
47
  DA:89,1
48
- DA:94,13
49
- DA:96,13
48
+ DA:94,35
49
+ DA:96,35
50
50
  DA:97,1
51
51
  DA:98,1
52
- DA:99,12
53
- DA:100,13
54
- DA:114,18
55
- DA:136,23
52
+ DA:99,34
53
+ DA:100,35
54
+ DA:114,62
55
+ DA:136,67
56
56
  DA:137,1
57
- DA:141,22
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,13
77
+ BRDA:24,3,0,35
78
78
  BRDA:27,4,0,1
79
- BRDA:27,4,1,12
79
+ BRDA:27,4,1,34
80
80
  BRDA:37,5,0,0
81
- BRDA:37,5,1,13
82
- BRDA:37,6,0,13
83
- BRDA:37,6,1,13
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,13
86
- BRDA:38,8,0,13
87
- BRDA:38,8,1,13
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,13
89
+ BRDA:40,9,1,35
90
90
  BRDA:78,10,0,1
91
- BRDA:78,10,1,15
92
- BRDA:78,11,0,16
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,14
96
- BRDA:83,13,0,15
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,13
100
- BRDA:88,15,0,14
101
- BRDA:88,15,1,13
102
- BRDA:88,15,2,12
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,12
105
- BRDA:96,17,0,13
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,22
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
- LF:16
143
- LH:16
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:11,findExpiryTime
194
+ FNDA:33,findExpiryTime
173
195
  DA:14,4
174
- DA:15,11
175
- DA:16,11
176
- DA:17,11
177
- DA:18,11
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,11
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:33,calculate
188
- FNF:1
189
- FNH:1
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:4,1
194
- DA:33,1
195
- DA:36,1
196
- DA:37,1
197
- DA:39,1
198
- LF:7
199
- LH:7
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:40,retrieveFactor
206
- FN:75,search
207
- FNF:2
208
- FNH:2
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:4,1
214
- DA:40,1
215
- DA:43,1
261
+ DA:9,1
216
262
  DA:44,1
217
- DA:46,1
218
- DA:75,1
219
- DA:78,1
263
+ DA:47,1
264
+ DA:48,1
265
+ DA:50,1
220
266
  DA:79,1
221
- DA:81,1
222
- LF:11
223
- LH:11
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:15,get
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:3,1
236
- DA:15,1
237
- DA:17,1
299
+ DA:4,1
300
+ DA:16,1
238
301
  DA:18,1
239
- DA:20,1
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:32,calculate
248
- FNF:1
249
- FNH:1
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:4,1
254
- DA:32,1
255
- DA:35,1
256
- DA:36,1
257
- DA:38,1
258
- LF:7
259
- LH:7
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:32,calculate
266
- FNF:1
267
- FNH:1
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:4,1
272
- DA:32,1
273
- DA:35,1
274
- DA:36,1
275
- DA:38,1
276
- LF:7
277
- LH:7
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:34,calculate
284
- FNF:1
285
- FNH:1
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:4,1
290
- DA:34,1
291
- DA:37,1
292
- DA:38,1
293
- DA:40,1
294
- LF:7
295
- LH:7
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:34,calculate
302
- FNF:1
303
- FNH:1
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:4,1
308
- DA:34,1
309
- DA:37,1
310
- DA:38,1
311
- DA:40,1
312
- LF:7
313
- LH:7
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:31,calculate
320
- FNF:1
321
- FNH:1
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:4,1
326
- DA:31,1
327
- DA:34,1
328
- DA:35,1
329
- DA:37,1
330
- LF:7
331
- LH:7
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
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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";