emissions-api-sdk 1.0.1 → 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 (106) hide show
  1. package/dist/api/Calculation.js +4 -4
  2. package/dist/api/Factor.js +7 -7
  3. package/dist/api/FactorSets.js +1 -1
  4. package/dist/api/Fugitive.js +4 -4
  5. package/dist/api/Location.js +4 -4
  6. package/dist/api/Mobile.js +4 -6
  7. package/dist/api/Stationary.js +4 -4
  8. package/dist/api/TransportationAndDistribution.js +5 -5
  9. package/dist/coverage/clover.xml +335 -0
  10. package/dist/coverage/coverage-final.json +19 -0
  11. package/dist/coverage/lcov-report/base.css +224 -0
  12. package/dist/coverage/lcov-report/block-navigation.js +87 -0
  13. package/dist/coverage/lcov-report/favicon.png +0 -0
  14. package/dist/coverage/lcov-report/index.html +161 -0
  15. package/dist/coverage/lcov-report/prettify.css +1 -0
  16. package/dist/coverage/lcov-report/prettify.js +2 -0
  17. package/dist/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  18. package/dist/coverage/lcov-report/sorter.js +210 -0
  19. package/dist/coverage/lcov-report/src/Client.ts.html +838 -0
  20. package/dist/coverage/lcov-report/src/Constants.ts.html +208 -0
  21. package/dist/coverage/lcov-report/src/api/Calculation.ts.html +436 -0
  22. package/dist/coverage/lcov-report/src/api/Factor.ts.html +622 -0
  23. package/dist/coverage/lcov-report/src/api/FactorSets.ts.html +157 -0
  24. package/dist/coverage/lcov-report/src/api/Fugitive.ts.html +436 -0
  25. package/dist/coverage/lcov-report/src/api/Location.ts.html +433 -0
  26. package/dist/coverage/lcov-report/src/api/Mobile.ts.html +448 -0
  27. package/dist/coverage/lcov-report/src/api/Stationary.ts.html +442 -0
  28. package/dist/coverage/lcov-report/src/api/TransportationAndDistribution.ts.html +436 -0
  29. package/dist/coverage/lcov-report/src/api/index.html +221 -0
  30. package/dist/coverage/lcov-report/src/index.html +161 -0
  31. package/dist/coverage/lcov-report/src/request.ts.html +235 -0
  32. package/dist/coverage/lcov-report/src/utils.ts.html +139 -0
  33. package/dist/coverage/lcov-report/test/index.html +116 -0
  34. package/dist/coverage/lcov-report/test/mocks/CommonRequest.ts.html +142 -0
  35. package/dist/coverage/lcov-report/test/mocks/FactorRequest.ts.html +133 -0
  36. package/dist/coverage/lcov-report/test/mocks/GenericCalculationRequest.ts.html +142 -0
  37. package/dist/coverage/lcov-report/test/mocks/LocationRequest.ts.html +139 -0
  38. package/dist/coverage/lcov-report/test/mocks/SearchRequest.ts.html +142 -0
  39. package/dist/coverage/lcov-report/test/mocks/index.html +176 -0
  40. package/dist/coverage/lcov-report/test/testUtils.ts.html +97 -0
  41. package/dist/coverage/lcov.info +558 -0
  42. package/dist/interfaces/response/AreaResponse.js +2 -0
  43. package/dist/interfaces/response/EmissionResponse.js +2 -0
  44. package/dist/interfaces/response/EmissionResponseWithDetails.js +2 -0
  45. package/dist/interfaces/response/FactorResponse.js +2 -0
  46. package/dist/interfaces/response/FactorSetResponse.js +2 -0
  47. package/dist/interfaces/response/SearchResponse.js +2 -0
  48. package/dist/interfaces/response/TypeResponse.js +2 -0
  49. package/dist/interfaces/response/UnitResponse.js +2 -0
  50. package/dist/types/api/Calculation.d.ts +13 -8
  51. package/dist/types/api/Factor.d.ts +18 -13
  52. package/dist/types/api/FactorSets.d.ts +3 -2
  53. package/dist/types/api/Fugitive.d.ts +13 -8
  54. package/dist/types/api/Location.d.ts +13 -8
  55. package/dist/types/api/Mobile.d.ts +13 -10
  56. package/dist/types/api/Stationary.d.ts +13 -8
  57. package/dist/types/api/TransportationAndDistribution.d.ts +14 -9
  58. package/dist/types/index.d.ts +8 -0
  59. package/dist/types/interfaces/response/AreaResponse.d.ts +20 -0
  60. package/dist/types/interfaces/response/EmissionResponse.d.ts +31 -0
  61. package/dist/types/interfaces/response/EmissionResponseWithDetails.d.ts +144 -0
  62. package/dist/types/interfaces/response/FactorResponse.d.ts +53 -0
  63. package/dist/types/interfaces/response/FactorSetResponse.d.ts +38 -0
  64. package/dist/types/interfaces/response/SearchResponse.d.ts +41 -0
  65. package/dist/types/interfaces/response/TypeResponse.d.ts +7 -0
  66. package/dist/types/interfaces/response/UnitResponse.d.ts +7 -0
  67. package/docs/_sources/index.rst.txt +1 -0
  68. package/docs/_sources/troubleshooting.rst.txt +486 -0
  69. package/docs/_static/basic.css +8 -0
  70. package/docs/_static/pygments.css +146 -164
  71. package/docs/_static/searchtools.js +5 -8
  72. package/docs/_static/styles/furo.css +1 -1
  73. package/docs/_static/styles/furo.css.map +1 -1
  74. package/docs/authentication.html +29 -19
  75. package/docs/client.html +29 -19
  76. package/docs/genindex.html +29 -19
  77. package/docs/getting_started.html +29 -19
  78. package/docs/index.html +42 -19
  79. package/docs/objects.inv +0 -0
  80. package/docs/reference.html +69 -53
  81. package/docs/sdk.html +29 -19
  82. package/docs/search.html +29 -19
  83. package/docs/searchindex.js +1 -1
  84. package/docs/troubleshooting.html +786 -0
  85. package/package.json +1 -1
  86. package/sphinx-build/requirements.txt +5 -0
  87. package/sphinx-build/source/index.rst +1 -0
  88. package/sphinx-build/source/troubleshooting.rst +486 -0
  89. package/src/api/Calculation.ts +19 -14
  90. package/src/api/Factor.ts +27 -22
  91. package/src/api/FactorSets.ts +4 -3
  92. package/src/api/Fugitive.ts +19 -14
  93. package/src/api/Location.ts +20 -15
  94. package/src/api/Mobile.ts +19 -16
  95. package/src/api/Stationary.ts +19 -14
  96. package/src/api/TransportationAndDistribution.ts +21 -16
  97. package/src/index.ts +33 -1
  98. package/src/interfaces/response/AreaResponse.ts +25 -0
  99. package/src/interfaces/response/EmissionResponse.ts +44 -0
  100. package/src/interfaces/response/EmissionResponseWithDetails.ts +183 -0
  101. package/src/interfaces/response/FactorResponse.ts +78 -0
  102. package/src/interfaces/response/FactorSetResponse.ts +52 -0
  103. package/src/interfaces/response/SearchResponse.ts +52 -0
  104. package/src/interfaces/response/TypeResponse.ts +7 -0
  105. package/src/interfaces/response/UnitResponse.ts +7 -0
  106. package/test/apiTest.test.ts +1 -1
@@ -0,0 +1,97 @@
1
+
2
+ <!doctype html>
3
+ <html lang="en">
4
+
5
+ <head>
6
+ <title>Code coverage report for test/testUtils.ts</title>
7
+ <meta charset="utf-8" />
8
+ <link rel="stylesheet" href="../prettify.css" />
9
+ <link rel="stylesheet" href="../base.css" />
10
+ <link rel="shortcut icon" type="image/x-icon" href="../favicon.png" />
11
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
12
+ <style type='text/css'>
13
+ .coverage-summary .sorter {
14
+ background-image: url(../sort-arrow-sprite.png);
15
+ }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <div class='wrapper'>
21
+ <div class='pad1'>
22
+ <h1><a href="../index.html">All files</a> / <a href="index.html">test</a> testUtils.ts</h1>
23
+ <div class='clearfix'>
24
+
25
+ <div class='fl pad1y space-right2'>
26
+ <span class="strong">100% </span>
27
+ <span class="quiet">Statements</span>
28
+ <span class='fraction'>4/4</span>
29
+ </div>
30
+
31
+
32
+ <div class='fl pad1y space-right2'>
33
+ <span class="strong">100% </span>
34
+ <span class="quiet">Branches</span>
35
+ <span class='fraction'>0/0</span>
36
+ </div>
37
+
38
+
39
+ <div class='fl pad1y space-right2'>
40
+ <span class="strong">100% </span>
41
+ <span class="quiet">Functions</span>
42
+ <span class='fraction'>1/1</span>
43
+ </div>
44
+
45
+
46
+ <div class='fl pad1y space-right2'>
47
+ <span class="strong">100% </span>
48
+ <span class="quiet">Lines</span>
49
+ <span class='fraction'>4/4</span>
50
+ </div>
51
+
52
+
53
+ </div>
54
+ <p class="quiet">
55
+ Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
56
+ </p>
57
+ <template id="filterTemplate">
58
+ <div class="quiet">
59
+ Filter:
60
+ <input type="search" id="fileSearch">
61
+ </div>
62
+ </template>
63
+ </div>
64
+ <div class='status-line high'></div>
65
+ <pre><table class="coverage">
66
+ <tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a>
67
+ <a name='L2'></a><a href='#L2'>2</a>
68
+ <a name='L3'></a><a href='#L3'>3</a>
69
+ <a name='L4'></a><a href='#L4'>4</a>
70
+ <a name='L5'></a><a href='#L5'>5</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
71
+ <span class="cline-any cline-yes">3x</span>
72
+ <span class="cline-any cline-yes">3x</span>
73
+ <span class="cline-any cline-yes">3x</span>
74
+ <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">export function generateMockjwt(expiryInSecsFromNow : number): string {
75
+ const header = Buffer.from(JSON.stringify({alg: 'HS256', typ: 'JWT'})).toString('base64url');
76
+ const payload = Buffer.from(JSON.stringify({exp: Math.floor(Date.now()/1000) + expiryInSecsFromNow})).toString('base64url');
77
+ return `${header}.${payload}.signature`;
78
+ }</pre></td></tr></table></pre>
79
+
80
+ <div class='push'></div><!-- for sticky footer -->
81
+ </div><!-- /wrapper -->
82
+ <div class='footer quiet pad2 space-top1 center small'>
83
+ Code coverage generated by
84
+ <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
85
+ at 2025-12-11T17:06:20.018Z
86
+ </div>
87
+ <script src="../prettify.js"></script>
88
+ <script>
89
+ window.onload = function () {
90
+ prettyPrint();
91
+ };
92
+ </script>
93
+ <script src="../sorter.js"></script>
94
+ <script src="../block-navigation.js"></script>
95
+ </body>
96
+ </html>
97
+
@@ -0,0 +1,558 @@
1
+ TN:
2
+ SF:src/Client.ts
3
+ FN:19,(anonymous_1)
4
+ FN:77,(anonymous_2)
5
+ FN:113,(anonymous_3)
6
+ FN:135,(anonymous_4)
7
+ FN:156,(anonymous_5)
8
+ FN:186,(anonymous_6)
9
+ FN:200,(anonymous_7)
10
+ FN:214,(anonymous_8)
11
+ FN:236,(anonymous_9)
12
+ FNF:9
13
+ FNH:7
14
+ FNDA:35,(anonymous_1)
15
+ FNDA:38,(anonymous_2)
16
+ FNDA:62,(anonymous_3)
17
+ FNDA:67,(anonymous_4)
18
+ FNDA:3,(anonymous_5)
19
+ FNDA:2,(anonymous_6)
20
+ FNDA:0,(anonymous_7)
21
+ FNDA:0,(anonymous_8)
22
+ FNDA:4,(anonymous_9)
23
+ DA:1,4
24
+ DA:3,4
25
+ DA:4,4
26
+ DA:6,4
27
+ DA:7,4
28
+ DA:24,35
29
+ DA:25,35
30
+ DA:26,35
31
+ DA:27,35
32
+ DA:28,1
33
+ DA:29,1
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
+ DA:79,1
44
+ DA:83,37
45
+ DA:84,1
46
+ DA:88,36
47
+ DA:89,1
48
+ DA:94,35
49
+ DA:96,35
50
+ DA:97,1
51
+ DA:98,1
52
+ DA:99,34
53
+ DA:100,35
54
+ DA:114,62
55
+ DA:136,67
56
+ DA:137,1
57
+ DA:141,66
58
+ DA:157,3
59
+ DA:158,2
60
+ DA:159,2
61
+ DA:160,1
62
+ DA:161,1
63
+ DA:167,1
64
+ DA:168,1
65
+ DA:187,2
66
+ DA:201,0
67
+ DA:215,0
68
+ DA:237,4
69
+ DA:238,4
70
+ DA:249,4
71
+ DA:250,4
72
+ LF:49
73
+ LH:47
74
+ BRDA:22,0,0,0
75
+ BRDA:24,1,0,1
76
+ BRDA:24,2,0,1
77
+ BRDA:24,3,0,35
78
+ BRDA:27,4,0,1
79
+ BRDA:27,4,1,34
80
+ BRDA:37,5,0,0
81
+ BRDA:37,5,1,35
82
+ BRDA:37,6,0,35
83
+ BRDA:37,6,1,35
84
+ BRDA:38,7,0,0
85
+ BRDA:38,7,1,35
86
+ BRDA:38,8,0,35
87
+ BRDA:38,8,1,35
88
+ BRDA:40,9,0,0
89
+ BRDA:40,9,1,35
90
+ BRDA:78,10,0,1
91
+ BRDA:78,10,1,37
92
+ BRDA:78,11,0,38
93
+ BRDA:78,11,1,1
94
+ BRDA:83,12,0,1
95
+ BRDA:83,12,1,36
96
+ BRDA:83,13,0,37
97
+ BRDA:83,13,1,2
98
+ BRDA:88,14,0,1
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
+ BRDA:96,16,0,1
104
+ BRDA:96,16,1,34
105
+ BRDA:96,17,0,35
106
+ BRDA:96,17,1,1
107
+ BRDA:136,18,0,1
108
+ BRDA:136,18,1,66
109
+ BRDA:157,19,0,2
110
+ BRDA:157,19,1,1
111
+ BRDA:159,20,0,1
112
+ BRDA:159,20,1,1
113
+ BRDA:237,21,0,1
114
+ BRDA:237,21,1,3
115
+ BRDA:237,22,0,4
116
+ BRDA:237,22,1,4
117
+ BRDA:249,23,0,0
118
+ BRDA:249,23,1,4
119
+ BRF:45
120
+ BRH:40
121
+ end_of_record
122
+ TN:
123
+ SF:src/Constants.ts
124
+ FNF:0
125
+ FNH:0
126
+ DA:1,4
127
+ DA:2,4
128
+ DA:3,4
129
+ DA:4,4
130
+ DA:5,4
131
+ DA:6,4
132
+ DA:7,4
133
+ DA:8,4
134
+ DA:9,4
135
+ DA:10,4
136
+ DA:11,4
137
+ DA:13,4
138
+ DA:14,4
139
+ DA:15,4
140
+ DA:16,4
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
166
+ BRF:0
167
+ BRH:0
168
+ end_of_record
169
+ TN:
170
+ SF:src/request.ts
171
+ FN:30,makeApiRequest
172
+ FNF:1
173
+ FNH:1
174
+ FNDA:3,makeApiRequest
175
+ DA:1,2
176
+ DA:3,2
177
+ DA:4,2
178
+ DA:30,2
179
+ DA:31,3
180
+ DA:32,3
181
+ DA:34,3
182
+ DA:48,3
183
+ DA:49,2
184
+ LF:9
185
+ LH:9
186
+ BRF:0
187
+ BRH:0
188
+ end_of_record
189
+ TN:
190
+ SF:src/utils.ts
191
+ FN:14,findExpiryTime
192
+ FNF:1
193
+ FNH:1
194
+ FNDA:33,findExpiryTime
195
+ DA:14,4
196
+ DA:15,33
197
+ DA:16,33
198
+ DA:17,33
199
+ DA:18,33
200
+ LF:5
201
+ LH:5
202
+ BRDA:17,0,0,0
203
+ BRDA:17,0,1,33
204
+ BRF:2
205
+ BRH:1
206
+ end_of_record
207
+ TN:
208
+ SF:src/api/Calculation.ts
209
+ FN:38,calculate
210
+ FN:62,getTypes
211
+ FN:82,getArea
212
+ FN:107,getUnits
213
+ FNF:4
214
+ FNH:4
215
+ FNDA:1,calculate
216
+ FNDA:1,getTypes
217
+ FNDA:1,getArea
218
+ FNDA:1,getUnits
219
+ DA:1,1
220
+ DA:2,1
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
240
+ BRF:0
241
+ BRH:0
242
+ end_of_record
243
+ TN:
244
+ SF:src/api/Factor.ts
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
253
+ FNDA:1,retrieveFactor
254
+ FNDA:1,search
255
+ FNDA:1,getTypes
256
+ FNDA:1,getSearchArea
257
+ FNDA:1,getArea
258
+ FNDA:1,getUnits
259
+ DA:1,1
260
+ DA:2,1
261
+ DA:9,1
262
+ DA:44,1
263
+ DA:47,1
264
+ DA:48,1
265
+ DA:50,1
266
+ DA:79,1
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
288
+ BRF:0
289
+ BRH:0
290
+ end_of_record
291
+ TN:
292
+ SF:src/api/FactorSets.ts
293
+ FN:16,get
294
+ FNF:1
295
+ FNH:1
296
+ FNDA:1,get
297
+ DA:1,1
298
+ DA:2,1
299
+ DA:4,1
300
+ DA:16,1
301
+ DA:18,1
302
+ DA:19,1
303
+ DA:21,1
304
+ LF:7
305
+ LH:7
306
+ BRF:0
307
+ BRH:0
308
+ end_of_record
309
+ TN:
310
+ SF:src/api/Fugitive.ts
311
+ FN:37,calculate
312
+ FN:60,getTypes
313
+ FN:81,getArea
314
+ FN:107,getUnits
315
+ FNF:4
316
+ FNH:4
317
+ FNDA:1,calculate
318
+ FNDA:1,getTypes
319
+ FNDA:1,getArea
320
+ FNDA:1,getUnits
321
+ DA:1,1
322
+ DA:2,1
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
342
+ BRF:0
343
+ BRH:0
344
+ end_of_record
345
+ TN:
346
+ SF:src/api/Location.ts
347
+ FN:37,calculate
348
+ FN:62,getTypes
349
+ FN:83,getArea
350
+ FN:106,getUnits
351
+ FNF:4
352
+ FNH:4
353
+ FNDA:1,calculate
354
+ FNDA:1,getTypes
355
+ FNDA:1,getArea
356
+ FNDA:1,getUnits
357
+ DA:1,1
358
+ DA:2,1
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
378
+ BRF:0
379
+ BRH:0
380
+ end_of_record
381
+ TN:
382
+ SF:src/api/Mobile.ts
383
+ FN:39,calculate
384
+ FN:64,getTypes
385
+ FN:85,getArea
386
+ FN:111,getUnits
387
+ FNF:4
388
+ FNH:4
389
+ FNDA:1,calculate
390
+ FNDA:1,getTypes
391
+ FNDA:1,getArea
392
+ FNDA:1,getUnits
393
+ DA:1,1
394
+ DA:2,1
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
414
+ BRF:0
415
+ BRH:0
416
+ end_of_record
417
+ TN:
418
+ SF:src/api/Stationary.ts
419
+ FN:39,calculate
420
+ FN:62,getTypes
421
+ FN:83,getArea
422
+ FN:109,getUnits
423
+ FNF:4
424
+ FNH:4
425
+ FNDA:1,calculate
426
+ FNDA:1,getTypes
427
+ FNDA:1,getArea
428
+ FNDA:1,getUnits
429
+ DA:1,1
430
+ DA:2,1
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
450
+ BRF:0
451
+ BRH:0
452
+ end_of_record
453
+ TN:
454
+ SF:src/api/TransportationAndDistribution.ts
455
+ FN:36,calculate
456
+ FN:60,getTypes
457
+ FN:81,getArea
458
+ FN:107,getUnits
459
+ FNF:4
460
+ FNH:4
461
+ FNDA:1,calculate
462
+ FNDA:1,getTypes
463
+ FNDA:1,getArea
464
+ FNDA:1,getUnits
465
+ DA:1,1
466
+ DA:2,1
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
486
+ BRF:0
487
+ BRH:0
488
+ end_of_record
489
+ TN:
490
+ SF:test/testUtils.ts
491
+ FN:1,generateMockjwt
492
+ FNF:1
493
+ FNH:1
494
+ FNDA:3,generateMockjwt
495
+ DA:1,1
496
+ DA:2,3
497
+ DA:3,3
498
+ DA:4,3
499
+ LF:4
500
+ LH:4
501
+ BRF:0
502
+ BRH:0
503
+ end_of_record
504
+ TN:
505
+ SF:test/mocks/CommonRequest.ts
506
+ FNF:0
507
+ FNH:0
508
+ DA:3,1
509
+ DA:19,1
510
+ LF:2
511
+ LH:2
512
+ BRF:0
513
+ BRH:0
514
+ end_of_record
515
+ TN:
516
+ SF:test/mocks/FactorRequest.ts
517
+ FNF:0
518
+ FNH:0
519
+ DA:3,1
520
+ DA:16,1
521
+ LF:2
522
+ LH:2
523
+ BRF:0
524
+ BRH:0
525
+ end_of_record
526
+ TN:
527
+ SF:test/mocks/GenericCalculationRequest.ts
528
+ FNF:0
529
+ FNH:0
530
+ DA:3,1
531
+ DA:19,1
532
+ LF:2
533
+ LH:2
534
+ BRF:0
535
+ BRH:0
536
+ end_of_record
537
+ TN:
538
+ SF:test/mocks/LocationRequest.ts
539
+ FNF:0
540
+ FNH:0
541
+ DA:3,1
542
+ DA:19,1
543
+ LF:2
544
+ LH:2
545
+ BRF:0
546
+ BRH:0
547
+ end_of_record
548
+ TN:
549
+ SF:test/mocks/SearchRequest.ts
550
+ FNF:0
551
+ FNH:0
552
+ DA:3,1
553
+ DA:19,1
554
+ LF:2
555
+ LH:2
556
+ BRF:0
557
+ BRH:0
558
+ 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 });