@creator.co/wapi 1.7.1-alpha1 → 1.7.1-alpha3

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 (114) hide show
  1. package/coverage/clover.xml +1088 -0
  2. package/coverage/coverage/coverage.txt +40 -0
  3. package/coverage/coverage-final.json +37 -0
  4. package/coverage/coverage-summary.json +38 -0
  5. package/coverage/coverage.txt +59 -0
  6. package/coverage/lcov-report/base.css +224 -0
  7. package/coverage/lcov-report/block-navigation.js +87 -0
  8. package/coverage/lcov-report/favicon.png +0 -0
  9. package/coverage/lcov-report/index.html +371 -0
  10. package/coverage/lcov-report/prettify.css +1 -0
  11. package/coverage/lcov-report/prettify.js +2 -0
  12. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  13. package/coverage/lcov-report/sorter.js +196 -0
  14. package/coverage/lcov-report/src/API/Request.ts.html +727 -0
  15. package/coverage/lcov-report/src/API/Response.ts.html +1189 -0
  16. package/coverage/lcov-report/src/API/Utils.ts.html +313 -0
  17. package/coverage/lcov-report/src/API/index.html +131 -0
  18. package/coverage/lcov-report/src/BaseEvent/EventProcessor.ts.html +496 -0
  19. package/coverage/lcov-report/src/BaseEvent/Process.ts.html +346 -0
  20. package/coverage/lcov-report/src/BaseEvent/Transaction.ts.html +1015 -0
  21. package/coverage/lcov-report/src/BaseEvent/index.html +146 -0
  22. package/coverage/lcov-report/src/Cache/Redis.ts.html +367 -0
  23. package/coverage/lcov-report/src/Cache/index.html +116 -0
  24. package/coverage/lcov-report/src/Config/Configuration.ts.html +700 -0
  25. package/coverage/lcov-report/src/Config/EnvironmentVar.ts.html +526 -0
  26. package/coverage/lcov-report/src/Config/index.html +131 -0
  27. package/coverage/lcov-report/src/Crypto/Crypto.ts.html +352 -0
  28. package/coverage/lcov-report/src/Crypto/JWT.ts.html +337 -0
  29. package/coverage/lcov-report/src/Crypto/index.html +131 -0
  30. package/coverage/lcov-report/src/Database/Database.ts.html +151 -0
  31. package/coverage/lcov-report/src/Database/DatabaseManager.ts.html +289 -0
  32. package/coverage/lcov-report/src/Database/DatabaseTransaction.ts.html +595 -0
  33. package/coverage/lcov-report/src/Database/index.html +161 -0
  34. package/coverage/lcov-report/src/Database/index.ts.html +169 -0
  35. package/coverage/lcov-report/src/Database/integrations/knex/KnexDatabase.ts.html +283 -0
  36. package/coverage/lcov-report/src/Database/integrations/knex/KnexTransaction.ts.html +337 -0
  37. package/coverage/lcov-report/src/Database/integrations/knex/index.html +131 -0
  38. package/coverage/lcov-report/src/Database/integrations/kysely/KyselyDatabase.ts.html +376 -0
  39. package/coverage/lcov-report/src/Database/integrations/kysely/KyselyTransaction.ts.html +601 -0
  40. package/coverage/lcov-report/src/Database/integrations/kysely/index.html +131 -0
  41. package/coverage/lcov-report/src/Database/integrations/pgsql/PostgresDatabase.ts.html +250 -0
  42. package/coverage/lcov-report/src/Database/integrations/pgsql/PostgresTransaction.ts.html +346 -0
  43. package/coverage/lcov-report/src/Database/integrations/pgsql/index.html +131 -0
  44. package/coverage/lcov-report/src/Database/types.d.ts.html +232 -0
  45. package/coverage/lcov-report/src/Globals.ts.html +394 -0
  46. package/coverage/lcov-report/src/Logger/Logger.ts.html +1138 -0
  47. package/coverage/lcov-report/src/Logger/index.html +116 -0
  48. package/coverage/lcov-report/src/Mailer/Mailer.ts.html +754 -0
  49. package/coverage/lcov-report/src/Mailer/index.html +116 -0
  50. package/coverage/lcov-report/src/Publisher/Publisher.ts.html +460 -0
  51. package/coverage/lcov-report/src/Publisher/index.html +116 -0
  52. package/coverage/lcov-report/src/Server/RouteResolver.ts.html +442 -0
  53. package/coverage/lcov-report/src/Server/Router.ts.html +616 -0
  54. package/coverage/lcov-report/src/Server/index.html +131 -0
  55. package/coverage/lcov-report/src/Server/lib/ContainerServer.ts.html +280 -0
  56. package/coverage/lcov-report/src/Server/lib/Server.ts.html +403 -0
  57. package/coverage/lcov-report/src/Server/lib/container/GenericHandler.ts.html +331 -0
  58. package/coverage/lcov-report/src/Server/lib/container/GenericHandlerEvent.ts.html +547 -0
  59. package/coverage/lcov-report/src/Server/lib/container/HealthHandler.ts.html +118 -0
  60. package/coverage/lcov-report/src/Server/lib/container/Proxy.ts.html +619 -0
  61. package/coverage/lcov-report/src/Server/lib/container/Utils.ts.html +184 -0
  62. package/coverage/lcov-report/src/Server/lib/container/index.html +176 -0
  63. package/coverage/lcov-report/src/Server/lib/index.html +131 -0
  64. package/coverage/lcov-report/src/Util/AsyncSingleton.ts.html +343 -0
  65. package/coverage/lcov-report/src/Util/Utils.ts.html +313 -0
  66. package/coverage/lcov-report/src/Util/index.html +131 -0
  67. package/coverage/lcov-report/src/Validation/Validator.ts.html +217 -0
  68. package/coverage/lcov-report/src/Validation/index.html +116 -0
  69. package/coverage/lcov-report/src/index.html +116 -0
  70. package/coverage/lcov.info +2326 -0
  71. package/dist/package-lock.json +2 -2
  72. package/dist/package.json +1 -1
  73. package/package.json +1 -1
  74. package/.eslintignore +0 -3
  75. package/.eslintrc.cjs +0 -60
  76. package/.github/workflows/npmpublish.yml +0 -11
  77. package/.github/workflows/prs.yml +0 -13
  78. package/jest.config.ts +0 -33
  79. package/jest.smoke.config.ts +0 -35
  80. package/tests/API/Request.test.ts +0 -273
  81. package/tests/API/Response.test.ts +0 -367
  82. package/tests/API/Utils.test.ts +0 -167
  83. package/tests/BaseEvent/EventProcessor.test.ts +0 -261
  84. package/tests/BaseEvent/Process.test.ts +0 -49
  85. package/tests/BaseEvent/Transaction.test.ts +0 -408
  86. package/tests/Cache/Redis-client.test.ts +0 -90
  87. package/tests/Cache/Redis-cluster.test.ts +0 -100
  88. package/tests/Config/Config.test.ts +0 -205
  89. package/tests/Config/EnvironmentVar.test.ts +0 -250
  90. package/tests/Crypto/Crypto.test.ts +0 -88
  91. package/tests/Crypto/JWT.test.ts +0 -92
  92. package/tests/Database/DatabaseManager.test.ts +0 -71
  93. package/tests/Database/integrations/knex/KnexDatabase.test.ts +0 -76
  94. package/tests/Database/integrations/knex/KnexTransaction.test.ts +0 -149
  95. package/tests/Database/integrations/kysely/KyselyDatabase.test.ts +0 -113
  96. package/tests/Database/integrations/kysely/KyselyTransaction.test.ts +0 -119
  97. package/tests/Database/integrations/pg/PostgresDatabase.test.ts +0 -76
  98. package/tests/Database/integrations/pg/PostgresTransaction.test.ts +0 -118
  99. package/tests/Logger/Logger.test.ts +0 -219
  100. package/tests/Mailer/Mailer.test.ts +0 -59
  101. package/tests/Publisher/Publisher.test.ts +0 -94
  102. package/tests/Server/RouteResolver.test.ts +0 -102
  103. package/tests/Server/Router.test.ts +0 -39
  104. package/tests/Server/lib/ContainerServer.test.ts +0 -531
  105. package/tests/Server/lib/Server.test.ts +0 -12
  106. package/tests/Server/lib/container/GenericHandler.test.ts +0 -131
  107. package/tests/Server/lib/container/GenericHandlerEvent.test.ts +0 -103
  108. package/tests/Server/lib/container/HealthHandler.test.ts +0 -30
  109. package/tests/Server/lib/container/Proxy.test.ts +0 -268
  110. package/tests/Server/lib/container/Utils.test.ts +0 -47
  111. package/tests/Test.utils.ts +0 -74
  112. package/tests/Validation/Validator.test.ts +0 -76
  113. package/tsconfig.json +0 -26
  114. package/tsconfig.smoke.json +0 -26
@@ -0,0 +1,1088 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1714419153669" clover="3.2.0">
3
+ <project timestamp="1714419153669" name="All files">
4
+ <metrics statements="920" coveredstatements="866" conditionals="542" coveredconditionals="465" methods="270" coveredmethods="243" elements="1732" coveredelements="1574" complexity="0" loc="920" ncloc="920" packages="18" files="36" classes="36"/>
5
+ <package name="src">
6
+ <metrics statements="23" coveredstatements="23" conditionals="6" coveredconditionals="6" methods="0" coveredmethods="0"/>
7
+ <file name="Globals.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Globals.ts">
8
+ <metrics statements="23" coveredstatements="23" conditionals="6" coveredconditionals="6" methods="0" coveredmethods="0"/>
9
+ <line num="1" count="13" type="stmt"/>
10
+ <line num="3" count="13" type="stmt"/>
11
+ <line num="6" count="13" type="stmt"/>
12
+ <line num="11" count="13" type="stmt"/>
13
+ <line num="15" count="13" type="stmt"/>
14
+ <line num="19" count="13" type="stmt"/>
15
+ <line num="23" count="13" type="stmt"/>
16
+ <line num="27" count="13" type="stmt"/>
17
+ <line num="32" count="13" type="stmt"/>
18
+ <line num="37" count="13" type="stmt"/>
19
+ <line num="42" count="13" type="stmt"/>
20
+ <line num="47" count="13" type="stmt"/>
21
+ <line num="55" count="13" type="cond" truecount="2" falsecount="0"/>
22
+ <line num="59" count="13" type="stmt"/>
23
+ <line num="64" count="13" type="stmt"/>
24
+ <line num="69" count="13" type="cond" truecount="2" falsecount="0"/>
25
+ <line num="74" count="13" type="cond" truecount="2" falsecount="0"/>
26
+ <line num="79" count="13" type="stmt"/>
27
+ <line num="83" count="13" type="stmt"/>
28
+ <line num="87" count="13" type="stmt"/>
29
+ <line num="92" count="13" type="stmt"/>
30
+ <line num="96" count="13" type="stmt"/>
31
+ <line num="102" count="13" type="stmt"/>
32
+ </file>
33
+ </package>
34
+ <package name="src.API">
35
+ <metrics statements="103" coveredstatements="103" conditionals="86" coveredconditionals="82" methods="38" coveredmethods="37"/>
36
+ <file name="Request.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/API/Request.ts">
37
+ <metrics statements="49" coveredstatements="49" conditionals="32" coveredconditionals="30" methods="18" coveredmethods="18"/>
38
+ <line num="4" count="13" type="stmt"/>
39
+ <line num="13" count="13" type="stmt"/>
40
+ <line num="32" count="95" type="stmt"/>
41
+ <line num="33" count="95" type="stmt"/>
42
+ <line num="34" count="95" type="stmt"/>
43
+ <line num="35" count="95" type="stmt"/>
44
+ <line num="44" count="4" type="stmt"/>
45
+ <line num="45" count="4" type="cond" truecount="3" falsecount="0"/>
46
+ <line num="54" count="8" type="stmt"/>
47
+ <line num="66" count="10" type="stmt"/>
48
+ <line num="75" count="9" type="stmt"/>
49
+ <line num="84" count="5" type="stmt"/>
50
+ <line num="85" count="5" type="cond" truecount="3" falsecount="0"/>
51
+ <line num="94" count="10" type="stmt"/>
52
+ <line num="102" count="13" type="stmt"/>
53
+ <line num="104" count="13" type="cond" truecount="2" falsecount="1"/>
54
+ <line num="106" count="12" type="cond" truecount="3" falsecount="0"/>
55
+ <line num="107" count="3" type="stmt"/>
56
+ <line num="108" count="3" type="stmt"/>
57
+ <line num="110" count="1" type="stmt"/>
58
+ <line num="114" count="10" type="stmt"/>
59
+ <line num="122" count="29" type="stmt"/>
60
+ <line num="130" count="23" type="cond" truecount="1" falsecount="0"/>
61
+ <line num="131" count="21" type="stmt"/>
62
+ <line num="132" count="21" type="cond" truecount="1" falsecount="0"/>
63
+ <line num="133" count="21" type="stmt"/>
64
+ <line num="137" count="2" type="stmt"/>
65
+ <line num="146" count="7" type="stmt"/>
66
+ <line num="155" count="6" type="stmt"/>
67
+ <line num="163" count="1" type="stmt"/>
68
+ <line num="171" count="114" type="cond" truecount="1" falsecount="0"/>
69
+ <line num="172" count="75" type="cond" truecount="2" falsecount="0"/>
70
+ <line num="180" count="6" type="cond" truecount="4" falsecount="0"/>
71
+ <line num="181" count="6" type="stmt"/>
72
+ <line num="182" count="6" type="cond" truecount="4" falsecount="0"/>
73
+ <line num="192" count="7" type="stmt"/>
74
+ <line num="193" count="7" type="stmt"/>
75
+ <line num="194" count="5" type="cond" truecount="4" falsecount="1"/>
76
+ <line num="195" count="5" type="stmt"/>
77
+ <line num="204" count="13" type="cond" truecount="2" falsecount="0"/>
78
+ <line num="205" count="13" type="stmt"/>
79
+ <line num="206" count="13" type="stmt"/>
80
+ <line num="207" count="13" type="stmt"/>
81
+ <line num="208" count="13" type="stmt"/>
82
+ <line num="209" count="13" type="stmt"/>
83
+ <line num="210" count="13" type="stmt"/>
84
+ <line num="211" count="13" type="stmt"/>
85
+ <line num="212" count="13" type="stmt"/>
86
+ <line num="213" count="13" type="stmt"/>
87
+ </file>
88
+ <file name="Response.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/API/Response.ts">
89
+ <metrics statements="54" coveredstatements="54" conditionals="54" coveredconditionals="52" methods="20" coveredmethods="19"/>
90
+ <line num="4" count="11" type="stmt"/>
91
+ <line num="16" count="4" type="cond" truecount="2" falsecount="0"/>
92
+ <line num="17" count="3" type="cond" truecount="2" falsecount="0"/>
93
+ <line num="36" count="11" type="stmt"/>
94
+ <line num="103" count="79" type="stmt"/>
95
+ <line num="104" count="79" type="stmt"/>
96
+ <line num="105" count="79" type="stmt"/>
97
+ <line num="111" count="79" type="stmt"/>
98
+ <line num="113" count="79" type="cond" truecount="4" falsecount="0"/>
99
+ <line num="114" count="79" type="cond" truecount="4" falsecount="0"/>
100
+ <line num="115" count="79" type="cond" truecount="4" falsecount="0"/>
101
+ <line num="116" count="79" type="cond" truecount="4" falsecount="0"/>
102
+ <line num="124" count="46" type="stmt"/>
103
+ <line num="132" count="95" type="stmt"/>
104
+ <line num="142" count="52" type="stmt"/>
105
+ <line num="152" count="5" type="stmt"/>
106
+ <line num="168" count="61" type="cond" truecount="1" falsecount="0"/>
107
+ <line num="169" count="59" type="cond" truecount="1" falsecount="0"/>
108
+ <line num="172" count="57" type="cond" truecount="4" falsecount="0"/>
109
+ <line num="173" count="51" type="stmt"/>
110
+ <line num="175" count="57" type="cond" truecount="1" falsecount="0"/>
111
+ <line num="178" count="52" type="stmt"/>
112
+ <line num="184" count="52" type="stmt"/>
113
+ <line num="186" count="52" type="cond" truecount="1" falsecount="0"/>
114
+ <line num="188" count="52" type="cond" truecount="1" falsecount="0"/>
115
+ <line num="198" count="2" type="stmt"/>
116
+ <line num="200" count="2" type="stmt"/>
117
+ <line num="206" count="2" type="stmt"/>
118
+ <line num="217" count="5" type="stmt"/>
119
+ <line num="218" count="5" type="cond" truecount="4" falsecount="0"/>
120
+ <line num="220" count="4" type="cond" truecount="2" falsecount="0"/>
121
+ <line num="221" count="3" type="stmt"/>
122
+ <line num="231" count="1" type="stmt"/>
123
+ <line num="232" count="1" type="stmt"/>
124
+ <line num="244" count="1" type="stmt"/>
125
+ <line num="245" count="1" type="stmt"/>
126
+ <line num="263" count="21" type="stmt"/>
127
+ <line num="264" count="21" type="stmt"/>
128
+ <line num="283" count="12" type="stmt"/>
129
+ <line num="284" count="12" type="stmt"/>
130
+ <line num="299" count="2" type="stmt"/>
131
+ <line num="300" count="2" type="stmt"/>
132
+ <line num="312" count="17" type="cond" truecount="2" falsecount="0"/>
133
+ <line num="321" count="1" type="stmt"/>
134
+ <line num="322" count="1" type="stmt"/>
135
+ <line num="323" count="1" type="stmt"/>
136
+ <line num="331" count="1" type="stmt"/>
137
+ <line num="341" count="1" type="stmt"/>
138
+ <line num="344" count="1" type="stmt"/>
139
+ <line num="345" count="1" type="cond" truecount="1" falsecount="0"/>
140
+ <line num="346" count="1" type="stmt"/>
141
+ <line num="359" count="7" type="cond" truecount="2" falsecount="0"/>
142
+ <line num="360" count="7" type="stmt"/>
143
+ <line num="369" count="11" type="cond" truecount="0" falsecount="2"/>
144
+ </file>
145
+ </package>
146
+ <package name="src.BaseEvent">
147
+ <metrics statements="117" coveredstatements="110" conditionals="72" coveredconditionals="68" methods="24" coveredmethods="24"/>
148
+ <file name="EventProcessor.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/BaseEvent/EventProcessor.ts">
149
+ <metrics statements="31" coveredstatements="30" conditionals="36" coveredconditionals="32" methods="7" coveredmethods="7"/>
150
+ <line num="3" count="1" type="stmt"/>
151
+ <line num="4" count="1" type="stmt"/>
152
+ <line num="5" count="1" type="stmt"/>
153
+ <line num="22" count="1" type="stmt"/>
154
+ <line num="56" count="7" type="stmt"/>
155
+ <line num="57" count="7" type="stmt"/>
156
+ <line num="58" count="7" type="cond" truecount="1" falsecount="1"/>
157
+ <line num="59" count="7" type="stmt"/>
158
+ <line num="73" count="7" type="stmt"/>
159
+ <line num="74" count="7" type="cond" truecount="2" falsecount="0"/>
160
+ <line num="80" count="3" type="cond" truecount="1" falsecount="1"/>
161
+ <line num="81" count="4" type="cond" truecount="1" falsecount="0"/>
162
+ <line num="82" count="0" type="stmt"/>
163
+ <line num="95" count="7" type="cond" truecount="4" falsecount="0"/>
164
+ <line num="98" count="6" type="stmt"/>
165
+ <line num="101" count="6" type="stmt"/>
166
+ <line num="103" count="6" type="stmt"/>
167
+ <line num="104" count="14" type="cond" truecount="2" falsecount="0"/>
168
+ <line num="108" count="6" type="stmt"/>
169
+ <line num="109" count="6" type="stmt"/>
170
+ <line num="110" count="11" type="stmt"/>
171
+ <line num="111" count="11" type="stmt"/>
172
+ <line num="113" count="11" type="stmt"/>
173
+ <line num="115" count="11" type="cond" truecount="1" falsecount="0"/>
174
+ <line num="120" count="5" type="cond" truecount="2" falsecount="0"/>
175
+ <line num="121" count="2" type="stmt"/>
176
+ <line num="125" count="4" type="cond" truecount="1" falsecount="0"/>
177
+ <line num="126" count="2" type="stmt"/>
178
+ <line num="127" count="3" type="stmt"/>
179
+ <line num="129" count="2" type="stmt"/>
180
+ <line num="132" count="1" type="stmt"/>
181
+ </file>
182
+ <file name="Process.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/BaseEvent/Process.ts">
183
+ <metrics statements="16" coveredstatements="16" conditionals="0" coveredconditionals="0" methods="5" coveredmethods="5"/>
184
+ <line num="2" count="1" type="stmt"/>
185
+ <line num="3" count="1" type="stmt"/>
186
+ <line num="13" count="1" type="stmt"/>
187
+ <line num="41" count="2" type="stmt"/>
188
+ <line num="42" count="2" type="stmt"/>
189
+ <line num="43" count="2" type="stmt"/>
190
+ <line num="52" count="2" type="stmt"/>
191
+ <line num="56" count="4" type="stmt"/>
192
+ <line num="57" count="4" type="stmt"/>
193
+ <line num="67" count="4" type="stmt"/>
194
+ <line num="69" count="4" type="stmt"/>
195
+ <line num="73" count="4" type="stmt"/>
196
+ <line num="77" count="2" type="stmt"/>
197
+ <line num="80" count="2" type="stmt"/>
198
+ <line num="81" count="2" type="stmt"/>
199
+ <line num="85" count="4" type="stmt"/>
200
+ </file>
201
+ <file name="Transaction.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/BaseEvent/Transaction.ts">
202
+ <metrics statements="70" coveredstatements="64" conditionals="36" coveredconditionals="36" methods="12" coveredmethods="12"/>
203
+ <line num="3" count="10" type="stmt"/>
204
+ <line num="4" count="10" type="stmt"/>
205
+ <line num="5" count="10" type="stmt"/>
206
+ <line num="13" count="10" type="stmt"/>
207
+ <line num="14" count="10" type="stmt"/>
208
+ <line num="15" count="10" type="stmt"/>
209
+ <line num="53" count="10" type="stmt"/>
210
+ <line num="63" count="63" type="stmt"/>
211
+ <line num="68" count="63" type="stmt"/>
212
+ <line num="123" count="63" type="cond" truecount="2" falsecount="0"/>
213
+ <line num="129" count="63" type="stmt"/>
214
+ <line num="130" count="63" type="stmt"/>
215
+ <line num="132" count="63" type="stmt"/>
216
+ <line num="134" count="63" type="cond" truecount="4" falsecount="0"/>
217
+ <line num="135" count="63" type="cond" truecount="4" falsecount="0"/>
218
+ <line num="137" count="63" type="cond" truecount="4" falsecount="0"/>
219
+ <line num="138" count="63" type="stmt"/>
220
+ <line num="143" count="63" type="cond" truecount="4" falsecount="0"/>
221
+ <line num="159" count="40" type="stmt"/>
222
+ <line num="160" count="40" type="stmt"/>
223
+ <line num="161" count="40" type="stmt"/>
224
+ <line num="165" count="39" type="cond" truecount="1" falsecount="0"/>
225
+ <line num="167" count="29" type="stmt"/>
226
+ <line num="182" count="40" type="stmt"/>
227
+ <line num="184" count="40" type="stmt"/>
228
+ <line num="186" count="40" type="stmt"/>
229
+ <line num="187" count="40" type="stmt"/>
230
+ <line num="189" count="36" type="cond" truecount="4" falsecount="0"/>
231
+ <line num="190" count="26" type="stmt"/>
232
+ <line num="191" count="26" type="cond" truecount="2" falsecount="0"/>
233
+ <line num="192" count="10" type="cond" truecount="4" falsecount="0"/>
234
+ <line num="193" count="3" type="stmt"/>
235
+ <line num="194" count="3" type="stmt"/>
236
+ <line num="195" count="3" type="stmt"/>
237
+ <line num="197" count="7" type="stmt"/>
238
+ <line num="201" count="7" type="stmt"/>
239
+ <line num="202" count="7" type="stmt"/>
240
+ <line num="206" count="4" type="stmt"/>
241
+ <line num="207" count="4" type="stmt"/>
242
+ <line num="209" count="4" type="cond" truecount="1" falsecount="0"/>
243
+ <line num="211" count="3" type="stmt"/>
244
+ <line num="215" count="3" type="stmt"/>
245
+ <line num="217" count="39" type="stmt"/>
246
+ <line num="228" count="2" type="stmt"/>
247
+ <line num="229" count="2" type="stmt"/>
248
+ <line num="230" count="2" type="stmt"/>
249
+ <line num="231" count="2" type="stmt"/>
250
+ <line num="242" count="2" type="stmt"/>
251
+ <line num="252" count="40" type="stmt"/>
252
+ <line num="254" count="40" type="stmt"/>
253
+ <line num="255" count="39" type="stmt"/>
254
+ <line num="256" count="2" type="stmt"/>
255
+ <line num="257" count="2" type="cond" truecount="2" falsecount="0"/>
256
+ <line num="260" count="0" type="stmt"/>
257
+ <line num="261" count="0" type="stmt"/>
258
+ <line num="267" count="1" type="stmt"/>
259
+ <line num="268" count="0" type="stmt"/>
260
+ <line num="269" count="0" type="stmt"/>
261
+ <line num="271" count="0" type="stmt"/>
262
+ <line num="272" count="0" type="stmt"/>
263
+ <line num="275" count="1" type="stmt"/>
264
+ <line num="276" count="1" type="stmt"/>
265
+ <line num="278" count="1" type="cond" truecount="1" falsecount="0"/>
266
+ <line num="289" count="40" type="stmt"/>
267
+ <line num="290" count="40" type="stmt"/>
268
+ <line num="292" count="1" type="stmt"/>
269
+ <line num="293" count="1" type="stmt"/>
270
+ <line num="295" count="1" type="cond" truecount="1" falsecount="0"/>
271
+ <line num="297" count="40" type="stmt"/>
272
+ <line num="308" count="10" type="stmt"/>
273
+ </file>
274
+ </package>
275
+ <package name="src.Cache">
276
+ <metrics statements="19" coveredstatements="19" conditionals="8" coveredconditionals="6" methods="7" coveredmethods="6"/>
277
+ <file name="Redis.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Cache/Redis.ts">
278
+ <metrics statements="19" coveredstatements="19" conditionals="8" coveredconditionals="6" methods="7" coveredmethods="6"/>
279
+ <line num="1" count="2" type="stmt"/>
280
+ <line num="4" count="2" type="stmt"/>
281
+ <line num="8" count="2" type="stmt"/>
282
+ <line num="9" count="2" type="stmt"/>
283
+ <line num="12" count="6" type="stmt"/>
284
+ <line num="18" count="2" type="stmt"/>
285
+ <line num="24" count="2" type="stmt"/>
286
+ <line num="29" count="16" type="stmt"/>
287
+ <line num="35" count="8" type="cond" truecount="2" falsecount="0"/>
288
+ <line num="36" count="4" type="stmt"/>
289
+ <line num="48" count="4" type="stmt"/>
290
+ <line num="49" count="4" type="stmt"/>
291
+ <line num="59" count="4" type="stmt"/>
292
+ <line num="61" count="4" type="stmt"/>
293
+ <line num="67" count="4" type="stmt"/>
294
+ <line num="68" count="4" type="stmt"/>
295
+ <line num="84" count="4" type="stmt"/>
296
+ <line num="86" count="4" type="stmt"/>
297
+ <line num="95" count="2" type="cond" truecount="0" falsecount="2"/>
298
+ </file>
299
+ </package>
300
+ <package name="src.Config">
301
+ <metrics statements="68" coveredstatements="64" conditionals="41" coveredconditionals="33" methods="14" coveredmethods="13"/>
302
+ <file name="Configuration.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Config/Configuration.ts">
303
+ <metrics statements="30" coveredstatements="26" conditionals="21" coveredconditionals="13" methods="7" coveredmethods="6"/>
304
+ <line num="1" count="1" type="stmt"/>
305
+ <line num="2" count="1" type="stmt"/>
306
+ <line num="4" count="1" type="stmt"/>
307
+ <line num="12" count="1" type="stmt"/>
308
+ <line num="93" count="1" type="stmt"/>
309
+ <line num="109" count="1" type="stmt"/>
310
+ <line num="118" count="1" type="stmt"/>
311
+ <line num="119" count="1" type="stmt"/>
312
+ <line num="128" count="5" type="stmt"/>
313
+ <line num="129" count="5" type="stmt"/>
314
+ <line num="130" count="5" type="stmt"/>
315
+ <line num="131" count="5" type="stmt"/>
316
+ <line num="139" count="2" type="stmt"/>
317
+ <line num="140" count="2" type="stmt"/>
318
+ <line num="149" count="11" type="stmt"/>
319
+ <line num="150" count="11" type="stmt"/>
320
+ <line num="152" count="11" type="stmt"/>
321
+ <line num="153" count="11" type="cond" truecount="1" falsecount="0"/>
322
+ <line num="155" count="10" type="cond" truecount="1" falsecount="2"/>
323
+ <line num="156" count="0" type="stmt"/>
324
+ <line num="157" count="0" type="stmt"/>
325
+ <line num="158" count="0" type="stmt"/>
326
+ <line num="159" count="0" type="stmt"/>
327
+ <line num="162" count="10" type="stmt"/>
328
+ <line num="168" count="6" type="stmt"/>
329
+ <line num="169" count="6" type="stmt"/>
330
+ <line num="178" count="16" type="stmt"/>
331
+ <line num="189" count="8" type="cond" truecount="1" falsecount="1"/>
332
+ <line num="197" count="14" type="stmt"/>
333
+ <line num="206" count="1" type="cond" truecount="0" falsecount="2"/>
334
+ </file>
335
+ <file name="EnvironmentVar.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Config/EnvironmentVar.ts">
336
+ <metrics statements="38" coveredstatements="38" conditionals="20" coveredconditionals="20" methods="7" coveredmethods="7"/>
337
+ <line num="1" count="2" type="stmt"/>
338
+ <line num="2" count="2" type="stmt"/>
339
+ <line num="12" count="2" type="stmt"/>
340
+ <line num="13" count="2" type="stmt"/>
341
+ <line num="23" count="2" type="cond" truecount="2" falsecount="0"/>
342
+ <line num="24" count="2" type="stmt"/>
343
+ <line num="25" count="2" type="stmt"/>
344
+ <line num="26" count="2" type="stmt"/>
345
+ <line num="32" count="2" type="stmt"/>
346
+ <line num="65" count="41" type="stmt"/>
347
+ <line num="66" count="41" type="stmt"/>
348
+ <line num="67" count="41" type="stmt"/>
349
+ <line num="68" count="41" type="stmt"/>
350
+ <line num="77" count="13" type="cond" truecount="2" falsecount="0"/>
351
+ <line num="79" count="4" type="stmt"/>
352
+ <line num="90" count="28" type="cond" truecount="2" falsecount="0"/>
353
+ <line num="91" count="26" type="cond" truecount="2" falsecount="0"/>
354
+ <line num="92" count="18" type="stmt"/>
355
+ <line num="101" count="11" type="stmt"/>
356
+ <line num="102" count="11" type="cond" truecount="3" falsecount="0"/>
357
+ <line num="103" count="4" type="stmt"/>
358
+ <line num="107" count="7" type="stmt"/>
359
+ <line num="116" count="18" type="cond" truecount="1" falsecount="0"/>
360
+ <line num="117" count="18" type="stmt"/>
361
+ <line num="118" count="18" type="stmt"/>
362
+ <line num="119" count="18" type="stmt"/>
363
+ <line num="120" count="13" type="cond" truecount="3" falsecount="0"/>
364
+ <line num="122" count="5" type="stmt"/>
365
+ <line num="124" count="13" type="cond" truecount="1" falsecount="0"/>
366
+ <line num="125" count="7" type="stmt"/>
367
+ <line num="135" count="8" type="cond" truecount="1" falsecount="0"/>
368
+ <line num="136" count="8" type="stmt"/>
369
+ <line num="137" count="8" type="stmt"/>
370
+ <line num="138" count="8" type="stmt"/>
371
+ <line num="139" count="6" type="cond" truecount="1" falsecount="0"/>
372
+ <line num="141" count="2" type="stmt"/>
373
+ <line num="143" count="6" type="cond" truecount="1" falsecount="0"/>
374
+ <line num="144" count="3" type="stmt"/>
375
+ </file>
376
+ </package>
377
+ <package name="src.Crypto">
378
+ <metrics statements="30" coveredstatements="30" conditionals="17" coveredconditionals="17" methods="6" coveredmethods="6"/>
379
+ <file name="Crypto.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Crypto/Crypto.ts">
380
+ <metrics statements="16" coveredstatements="16" conditionals="4" coveredconditionals="4" methods="3" coveredmethods="3"/>
381
+ <line num="1" count="1" type="stmt"/>
382
+ <line num="11" count="1" type="stmt"/>
383
+ <line num="39" count="2" type="stmt"/>
384
+ <line num="40" count="2" type="stmt"/>
385
+ <line num="41" count="2" type="cond" truecount="2" falsecount="0"/>
386
+ <line num="42" count="2" type="stmt"/>
387
+ <line num="51" count="3" type="stmt"/>
388
+ <line num="52" count="3" type="stmt"/>
389
+ <line num="61" count="2" type="stmt"/>
390
+ <line num="63" count="1" type="stmt"/>
391
+ <line num="64" count="1" type="stmt"/>
392
+ <line num="75" count="3" type="stmt"/>
393
+ <line num="76" count="3" type="stmt"/>
394
+ <line num="83" count="2" type="stmt"/>
395
+ <line num="85" count="1" type="stmt"/>
396
+ <line num="86" count="1" type="stmt"/>
397
+ </file>
398
+ <file name="JWT.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Crypto/JWT.ts">
399
+ <metrics statements="14" coveredstatements="14" conditionals="13" coveredconditionals="13" methods="3" coveredmethods="3"/>
400
+ <line num="1" count="1" type="stmt"/>
401
+ <line num="20" count="1" type="stmt"/>
402
+ <line num="39" count="3" type="stmt"/>
403
+ <line num="40" count="3" type="stmt"/>
404
+ <line num="57" count="8" type="cond" truecount="2" falsecount="0"/>
405
+ <line num="58" count="8" type="stmt"/>
406
+ <line num="71" count="4" type="stmt"/>
407
+ <line num="73" count="4" type="stmt"/>
408
+ <line num="74" count="1" type="cond" truecount="1" falsecount="0"/>
409
+ <line num="75" count="1" type="stmt"/>
410
+ <line num="76" count="1" type="cond" truecount="1" falsecount="0"/>
411
+ <line num="79" count="3" type="stmt"/>
412
+ <line num="80" count="3" type="cond" truecount="1" falsecount="0"/>
413
+ <line num="82" count="2" type="stmt"/>
414
+ </file>
415
+ </package>
416
+ <package name="src.Database">
417
+ <metrics statements="71" coveredstatements="70" conditionals="14" coveredconditionals="14" methods="26" coveredmethods="21"/>
418
+ <file name="Database.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/Database.ts">
419
+ <metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
420
+ <line num="8" count="14" type="stmt"/>
421
+ <line num="14" count="6" type="stmt"/>
422
+ </file>
423
+ <file name="DatabaseManager.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/DatabaseManager.ts">
424
+ <metrics statements="16" coveredstatements="16" conditionals="1" coveredconditionals="1" methods="3" coveredmethods="3"/>
425
+ <line num="1" count="11" type="stmt"/>
426
+ <line num="3" count="11" type="stmt"/>
427
+ <line num="4" count="11" type="stmt"/>
428
+ <line num="5" count="11" type="stmt"/>
429
+ <line num="15" count="11" type="stmt"/>
430
+ <line num="24" count="11" type="stmt"/>
431
+ <line num="29" count="11" type="stmt"/>
432
+ <line num="34" count="12" type="stmt"/>
433
+ <line num="39" count="12" type="stmt"/>
434
+ <line num="49" count="9" type="stmt"/>
435
+ <line num="50" count="9" type="cond" truecount="1" falsecount="0"/>
436
+ <line num="51" count="5" type="stmt"/>
437
+ <line num="53" count="4" type="stmt"/>
438
+ <line num="54" count="4" type="stmt"/>
439
+ <line num="55" count="4" type="stmt"/>
440
+ <line num="66" count="4" type="stmt"/>
441
+ </file>
442
+ <file name="DatabaseTransaction.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/DatabaseTransaction.ts">
443
+ <metrics statements="41" coveredstatements="40" conditionals="13" coveredconditionals="13" methods="16" coveredmethods="16"/>
444
+ <line num="8" count="17" type="stmt"/>
445
+ <line num="43" count="33" type="stmt"/>
446
+ <line num="44" count="33" type="stmt"/>
447
+ <line num="45" count="33" type="stmt"/>
448
+ <line num="46" count="33" type="stmt"/>
449
+ <line num="56" count="33" type="stmt"/>
450
+ <line num="57" count="137" type="cond" truecount="2" falsecount="0"/>
451
+ <line num="59" count="33" type="stmt"/>
452
+ <line num="61" count="138" type="cond" truecount="2" falsecount="0"/>
453
+ <line num="62" count="94" type="stmt"/>
454
+ <line num="63" count="44" type="cond" truecount="1" falsecount="0"/>
455
+ <line num="64" count="43" type="stmt"/>
456
+ <line num="66" count="1" type="stmt"/>
457
+ <line num="69" count="1" type="cond" truecount="1" falsecount="0"/>
458
+ <line num="70" count="1" type="stmt"/>
459
+ <line num="72" count="0" type="stmt"/>
460
+ <line num="81" count="33" type="stmt"/>
461
+ <line num="82" count="29" type="stmt"/>
462
+ <line num="90" count="43" type="stmt"/>
463
+ <line num="91" count="43" type="cond" truecount="1" falsecount="0"/>
464
+ <line num="92" count="4" type="stmt"/>
465
+ <line num="94" count="39" type="stmt"/>
466
+ <line num="95" count="39" type="stmt"/>
467
+ <line num="104" count="33" type="stmt"/>
468
+ <line num="105" count="19" type="cond" truecount="1" falsecount="0"/>
469
+ <line num="106" count="4" type="stmt"/>
470
+ <line num="108" count="15" type="stmt"/>
471
+ <line num="109" count="15" type="stmt"/>
472
+ <line num="118" count="33" type="stmt"/>
473
+ <line num="119" count="11" type="cond" truecount="1" falsecount="0"/>
474
+ <line num="120" count="2" type="stmt"/>
475
+ <line num="122" count="9" type="stmt"/>
476
+ <line num="123" count="9" type="stmt"/>
477
+ <line num="132" count="33" type="stmt"/>
478
+ <line num="133" count="5" type="cond" truecount="1" falsecount="0"/>
479
+ <line num="134" count="2" type="cond" truecount="2" falsecount="0"/>
480
+ <line num="135" count="1" type="stmt"/>
481
+ <line num="137" count="1" type="stmt"/>
482
+ <line num="146" count="33" type="stmt"/>
483
+ <line num="147" count="3" type="cond" truecount="1" falsecount="0"/>
484
+ <line num="148" count="1" type="stmt"/>
485
+ </file>
486
+ <file name="index.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/index.ts">
487
+ <metrics statements="12" coveredstatements="12" conditionals="0" coveredconditionals="0" methods="6" coveredmethods="1"/>
488
+ <line num="1" count="1" type="stmt"/>
489
+ <line num="2" count="1" type="stmt"/>
490
+ <line num="3" count="1" type="stmt"/>
491
+ <line num="4" count="1" type="stmt"/>
492
+ <line num="6" count="1" type="stmt"/>
493
+ <line num="8" count="1" type="stmt"/>
494
+ <line num="14" count="1" type="stmt"/>
495
+ <line num="15" count="1" type="stmt"/>
496
+ <line num="17" count="2" type="stmt"/>
497
+ <line num="21" count="1" type="stmt"/>
498
+ <line num="24" count="1" type="stmt"/>
499
+ <line num="27" count="1" type="stmt"/>
500
+ </file>
501
+ </package>
502
+ <package name="src.Database.integrations.knex">
503
+ <metrics statements="24" coveredstatements="24" conditionals="2" coveredconditionals="2" methods="9" coveredmethods="9"/>
504
+ <file name="KnexDatabase.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/integrations/knex/KnexDatabase.ts">
505
+ <metrics statements="11" coveredstatements="11" conditionals="2" coveredconditionals="2" methods="3" coveredmethods="3"/>
506
+ <line num="1" count="12" type="stmt"/>
507
+ <line num="2" count="12" type="stmt"/>
508
+ <line num="4" count="12" type="stmt"/>
509
+ <line num="5" count="12" type="stmt"/>
510
+ <line num="11" count="12" type="stmt"/>
511
+ <line num="17" count="12" type="stmt"/>
512
+ <line num="30" count="2" type="stmt"/>
513
+ <line num="32" count="2" type="stmt"/>
514
+ <line num="41" count="2" type="stmt"/>
515
+ <line num="56" count="2" type="cond" truecount="2" falsecount="0"/>
516
+ <line num="64" count="2" type="stmt"/>
517
+ </file>
518
+ <file name="KnexTransaction.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/integrations/knex/KnexTransaction.ts">
519
+ <metrics statements="13" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="6" coveredmethods="6"/>
520
+ <line num="5" count="13" type="stmt"/>
521
+ <line num="17" count="13" type="stmt"/>
522
+ <line num="42" count="15" type="stmt"/>
523
+ <line num="55" count="15" type="stmt"/>
524
+ <line num="56" count="15" type="stmt"/>
525
+ <line num="57" count="15" type="stmt"/>
526
+ <line num="64" count="15" type="stmt"/>
527
+ <line num="65" count="15" type="stmt"/>
528
+ <line num="66" count="15" type="stmt"/>
529
+ <line num="73" count="15" type="stmt"/>
530
+ <line num="74" count="6" type="stmt"/>
531
+ <line num="81" count="15" type="stmt"/>
532
+ <line num="82" count="5" type="stmt"/>
533
+ </file>
534
+ </package>
535
+ <package name="src.Database.integrations.kysely">
536
+ <metrics statements="45" coveredstatements="45" conditionals="3" coveredconditionals="3" methods="19" coveredmethods="18"/>
537
+ <file name="KyselyDatabase.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/integrations/kysely/KyselyDatabase.ts">
538
+ <metrics statements="17" coveredstatements="17" conditionals="1" coveredconditionals="1" methods="4" coveredmethods="4"/>
539
+ <line num="1" count="12" type="stmt"/>
540
+ <line num="2" count="12" type="stmt"/>
541
+ <line num="4" count="12" type="stmt"/>
542
+ <line num="5" count="12" type="stmt"/>
543
+ <line num="12" count="12" type="stmt"/>
544
+ <line num="17" count="12" type="stmt"/>
545
+ <line num="22" count="12" type="stmt"/>
546
+ <line num="27" count="12" type="stmt"/>
547
+ <line num="53" count="2" type="stmt"/>
548
+ <line num="54" count="2" type="stmt"/>
549
+ <line num="55" count="2" type="stmt"/>
550
+ <line num="56" count="2" type="cond" truecount="1" falsecount="0"/>
551
+ <line num="57" count="1" type="stmt"/>
552
+ <line num="58" count="1" type="stmt"/>
553
+ <line num="67" count="2" type="stmt"/>
554
+ <line num="75" count="3" type="stmt"/>
555
+ <line num="92" count="3" type="stmt"/>
556
+ </file>
557
+ <file name="KyselyTransaction.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/integrations/kysely/KyselyTransaction.ts">
558
+ <metrics statements="28" coveredstatements="28" conditionals="2" coveredconditionals="2" methods="15" coveredmethods="14"/>
559
+ <line num="5" count="13" type="stmt"/>
560
+ <line num="16" count="13" type="stmt"/>
561
+ <line num="53" count="9" type="stmt"/>
562
+ <line num="68" count="9" type="stmt"/>
563
+ <line num="69" count="9" type="stmt"/>
564
+ <line num="70" count="9" type="stmt"/>
565
+ <line num="77" count="12" type="stmt"/>
566
+ <line num="78" count="12" type="stmt"/>
567
+ <line num="79" count="12" type="stmt"/>
568
+ <line num="80" count="12" type="stmt"/>
569
+ <line num="82" count="12" type="stmt"/>
570
+ <line num="83" count="12" type="stmt"/>
571
+ <line num="84" count="12" type="stmt"/>
572
+ <line num="85" count="12" type="stmt"/>
573
+ <line num="97" count="9" type="stmt"/>
574
+ <line num="98" count="5" type="stmt"/>
575
+ <line num="99" count="5" type="stmt"/>
576
+ <line num="106" count="9" type="stmt"/>
577
+ <line num="107" count="3" type="stmt"/>
578
+ <line num="108" count="3" type="stmt"/>
579
+ <line num="137" count="12" type="stmt"/>
580
+ <line num="138" count="12" type="stmt"/>
581
+ <line num="139" count="12" type="stmt"/>
582
+ <line num="148" count="12" type="stmt"/>
583
+ <line num="157" count="5" type="cond" truecount="1" falsecount="0"/>
584
+ <line num="158" count="5" type="stmt"/>
585
+ <line num="168" count="3" type="cond" truecount="1" falsecount="0"/>
586
+ <line num="169" count="3" type="stmt"/>
587
+ </file>
588
+ </package>
589
+ <package name="src.Database.integrations.pgsql">
590
+ <metrics statements="23" coveredstatements="23" conditionals="1" coveredconditionals="1" methods="9" coveredmethods="9"/>
591
+ <file name="PostgresDatabase.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/integrations/pgsql/PostgresDatabase.ts">
592
+ <metrics statements="10" coveredstatements="10" conditionals="1" coveredconditionals="1" methods="3" coveredmethods="3"/>
593
+ <line num="1" count="12" type="stmt"/>
594
+ <line num="3" count="12" type="stmt"/>
595
+ <line num="4" count="12" type="stmt"/>
596
+ <line num="11" count="12" type="stmt"/>
597
+ <line num="16" count="12" type="stmt"/>
598
+ <line num="33" count="2" type="stmt"/>
599
+ <line num="34" count="2" type="stmt"/>
600
+ <line num="35" count="2" type="cond" truecount="1" falsecount="0"/>
601
+ <line num="43" count="2" type="stmt"/>
602
+ <line num="46" count="3" type="stmt"/>
603
+ </file>
604
+ <file name="PostgresTransaction.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Database/integrations/pgsql/PostgresTransaction.ts">
605
+ <metrics statements="13" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="6" coveredmethods="6"/>
606
+ <line num="5" count="13" type="stmt"/>
607
+ <line num="16" count="13" type="stmt"/>
608
+ <line num="43" count="9" type="stmt"/>
609
+ <line num="58" count="9" type="stmt"/>
610
+ <line num="59" count="9" type="stmt"/>
611
+ <line num="60" count="9" type="stmt"/>
612
+ <line num="67" count="12" type="stmt"/>
613
+ <line num="68" count="12" type="stmt"/>
614
+ <line num="69" count="12" type="stmt"/>
615
+ <line num="76" count="9" type="stmt"/>
616
+ <line num="77" count="5" type="stmt"/>
617
+ <line num="84" count="9" type="stmt"/>
618
+ <line num="85" count="3" type="stmt"/>
619
+ </file>
620
+ </package>
621
+ <package name="src.Logger">
622
+ <metrics statements="86" coveredstatements="75" conditionals="100" coveredconditionals="69" methods="32" coveredmethods="25"/>
623
+ <file name="Logger.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Logger/Logger.ts">
624
+ <metrics statements="86" coveredstatements="75" conditionals="100" coveredconditionals="69" methods="32" coveredmethods="25"/>
625
+ <line num="1" count="13" type="stmt"/>
626
+ <line num="2" count="13" type="stmt"/>
627
+ <line num="3" count="13" type="stmt"/>
628
+ <line num="5" count="13" type="stmt"/>
629
+ <line num="15" count="13" type="cond" truecount="2" falsecount="0"/>
630
+ <line num="16" count="13" type="stmt"/>
631
+ <line num="17" count="13" type="stmt"/>
632
+ <line num="18" count="13" type="stmt"/>
633
+ <line num="19" count="13" type="stmt"/>
634
+ <line num="28" count="13" type="cond" truecount="1" falsecount="1"/>
635
+ <line num="33" count="13" type="stmt"/>
636
+ <line num="41" count="39" type="stmt"/>
637
+ <line num="63" count="13" type="stmt"/>
638
+ <line num="98" count="98" type="stmt"/>
639
+ <line num="100" count="98" type="stmt"/>
640
+ <line num="101" count="98" type="cond" truecount="6" falsecount="0"/>
641
+ <line num="104" count="98" type="cond" truecount="2" falsecount="0"/>
642
+ <line num="105" count="98" type="stmt"/>
643
+ <line num="106" count="98" type="cond" truecount="2" falsecount="0"/>
644
+ <line num="112" count="98" type="stmt"/>
645
+ <line num="114" count="98" type="stmt"/>
646
+ <line num="115" count="98" type="stmt"/>
647
+ <line num="123" count="1" type="stmt"/>
648
+ <line num="132" count="430" type="stmt"/>
649
+ <line num="141" count="119" type="stmt"/>
650
+ <line num="150" count="0" type="stmt"/>
651
+ <line num="159" count="0" type="stmt"/>
652
+ <line num="168" count="0" type="stmt"/>
653
+ <line num="177" count="15" type="stmt"/>
654
+ <line num="187" count="7" type="stmt"/>
655
+ <line num="196" count="98" type="stmt"/>
656
+ <line num="197" count="37" type="stmt"/>
657
+ <line num="198" count="79" type="stmt"/>
658
+ <line num="199" count="0" type="stmt"/>
659
+ <line num="200" count="31" type="stmt"/>
660
+ <line num="201" count="1" type="stmt"/>
661
+ <line num="204" count="0" type="stmt"/>
662
+ <line num="205" count="0" type="stmt"/>
663
+ <line num="217" count="719" type="cond" truecount="4" falsecount="0"/>
664
+ <line num="218" count="16" type="stmt"/>
665
+ <line num="220" count="703" type="stmt"/>
666
+ <line num="230" count="719" type="stmt"/>
667
+ <line num="231" count="719" type="cond" truecount="1" falsecount="0"/>
668
+ <line num="232" count="719" type="cond" truecount="12" falsecount="4"/>
669
+ <line num="233" count="719" type="cond" truecount="9" falsecount="3"/>
670
+ <line num="234" count="719" type="cond" truecount="9" falsecount="3"/>
671
+ <line num="236" count="0" type="stmt"/>
672
+ <line num="246" count="712" type="cond" truecount="0" falsecount="1"/>
673
+ <line num="248" count="712" type="stmt"/>
674
+ <line num="249" count="712" type="stmt"/>
675
+ <line num="252" count="1019" type="cond" truecount="4" falsecount="0"/>
676
+ <line num="255" count="1019" type="stmt"/>
677
+ <line num="259" count="712" type="stmt"/>
678
+ <line num="270" count="7" type="stmt"/>
679
+ <line num="272" count="7" type="stmt"/>
680
+ <line num="274" count="7" type="cond" truecount="1" falsecount="0"/>
681
+ <line num="275" count="7" type="cond" truecount="1" falsecount="0"/>
682
+ <line num="277" count="7" type="stmt"/>
683
+ <line num="287" count="719" type="stmt"/>
684
+ <line num="296" count="1019" type="cond" truecount="3" falsecount="0"/>
685
+ <line num="298" count="7" type="stmt"/>
686
+ <line num="299" count="7" type="stmt"/>
687
+ <line num="301" count="7" type="stmt"/>
688
+ <line num="302" count="9" type="stmt"/>
689
+ <line num="305" count="7" type="stmt"/>
690
+ <line num="312" count="9" type="cond" truecount="0" falsecount="1"/>
691
+ <line num="314" count="9" type="cond" truecount="2" falsecount="0"/>
692
+ <line num="315" count="7" type="stmt"/>
693
+ <line num="316" count="2" type="cond" truecount="1" falsecount="1"/>
694
+ <line num="317" count="0" type="stmt"/>
695
+ <line num="318" count="2" type="cond" truecount="1" falsecount="0"/>
696
+ <line num="319" count="1" type="stmt"/>
697
+ <line num="327" count="7" type="stmt"/>
698
+ <line num="328" count="7" type="stmt"/>
699
+ <line num="330" count="7" type="stmt"/>
700
+ <line num="331" count="0" type="stmt"/>
701
+ <line num="333" count="7" type="stmt"/>
702
+ <line num="334" count="21" type="cond" truecount="0" falsecount="1"/>
703
+ <line num="335" count="0" type="cond" truecount="0" falsecount="6"/>
704
+ <line num="337" count="7" type="stmt"/>
705
+ <line num="341" count="1" type="stmt"/>
706
+ <line num="342" count="2" type="stmt"/>
707
+ <line num="343" count="6" type="cond" truecount="2" falsecount="0"/>
708
+ <line num="344" count="2" type="cond" truecount="1" falsecount="1"/>
709
+ <line num="345" count="0" type="cond" truecount="0" falsecount="6"/>
710
+ <line num="347" count="2" type="stmt"/>
711
+ </file>
712
+ </package>
713
+ <package name="src.Mailer">
714
+ <metrics statements="42" coveredstatements="17" conditionals="27" coveredconditionals="9" methods="8" coveredmethods="2"/>
715
+ <file name="Mailer.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Mailer/Mailer.ts">
716
+ <metrics statements="42" coveredstatements="17" conditionals="27" coveredconditionals="9" methods="8" coveredmethods="2"/>
717
+ <line num="1" count="1" type="stmt"/>
718
+ <line num="2" count="1" type="stmt"/>
719
+ <line num="3" count="1" type="stmt"/>
720
+ <line num="4" count="1" type="stmt"/>
721
+ <line num="7" count="1" type="stmt"/>
722
+ <line num="17" count="1" type="stmt"/>
723
+ <line num="33" count="1" type="stmt"/>
724
+ <line num="34" count="1" type="stmt"/>
725
+ <line num="68" count="3" type="stmt"/>
726
+ <line num="82" count="3" type="stmt"/>
727
+ <line num="83" count="3" type="stmt"/>
728
+ <line num="84" count="3" type="stmt"/>
729
+ <line num="85" count="2" type="stmt"/>
730
+ <line num="87" count="1" type="stmt"/>
731
+ <line num="88" count="1" type="stmt"/>
732
+ <line num="90" count="2" type="stmt"/>
733
+ <line num="115" count="0" type="stmt"/>
734
+ <line num="127" count="0" type="stmt"/>
735
+ <line num="128" count="0" type="stmt"/>
736
+ <line num="129" count="0" type="stmt"/>
737
+ <line num="130" count="0" type="stmt"/>
738
+ <line num="131" count="0" type="stmt"/>
739
+ <line num="133" count="0" type="stmt"/>
740
+ <line num="134" count="0" type="stmt"/>
741
+ <line num="136" count="0" type="stmt"/>
742
+ <line num="153" count="0" type="stmt"/>
743
+ <line num="162" count="0" type="stmt"/>
744
+ <line num="173" count="0" type="cond" truecount="0" falsecount="2"/>
745
+ <line num="175" count="0" type="stmt"/>
746
+ <line num="176" count="0" type="cond" truecount="0" falsecount="1"/>
747
+ <line num="178" count="0" type="cond" truecount="0" falsecount="1"/>
748
+ <line num="179" count="0" type="cond" truecount="0" falsecount="1"/>
749
+ <line num="181" count="0" type="stmt"/>
750
+ <line num="194" count="0" type="stmt"/>
751
+ <line num="198" count="0" type="stmt"/>
752
+ <line num="208" count="0" type="stmt"/>
753
+ <line num="209" count="0" type="stmt"/>
754
+ <line num="210" count="0" type="stmt"/>
755
+ <line num="211" count="0" type="stmt"/>
756
+ <line num="213" count="0" type="stmt"/>
757
+ <line num="215" count="0" type="stmt"/>
758
+ <line num="224" count="1" type="cond" truecount="0" falsecount="2"/>
759
+ </file>
760
+ </package>
761
+ <package name="src.Publisher">
762
+ <metrics statements="27" coveredstatements="27" conditionals="11" coveredconditionals="9" methods="5" coveredmethods="4"/>
763
+ <file name="Publisher.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Publisher/Publisher.ts">
764
+ <metrics statements="27" coveredstatements="27" conditionals="11" coveredconditionals="9" methods="5" coveredmethods="4"/>
765
+ <line num="1" count="12" type="stmt"/>
766
+ <line num="7" count="12" type="stmt"/>
767
+ <line num="14" count="12" type="stmt"/>
768
+ <line num="20" count="12" type="stmt"/>
769
+ <line num="34" count="12" type="stmt"/>
770
+ <line num="48" count="67" type="cond" truecount="3" falsecount="0"/>
771
+ <line num="49" count="2" type="stmt"/>
772
+ <line num="66" count="3" type="stmt"/>
773
+ <line num="67" count="3" type="stmt"/>
774
+ <line num="68" count="3" type="stmt"/>
775
+ <line num="70" count="3" type="stmt"/>
776
+ <line num="75" count="3" type="stmt"/>
777
+ <line num="77" count="1" type="stmt"/>
778
+ <line num="79" count="3" type="stmt"/>
779
+ <line num="80" count="3" type="stmt"/>
780
+ <line num="90" count="2" type="stmt"/>
781
+ <line num="91" count="2" type="stmt"/>
782
+ <line num="92" count="2" type="stmt"/>
783
+ <line num="94" count="2" type="stmt"/>
784
+ <line num="98" count="2" type="stmt"/>
785
+ <line num="100" count="1" type="stmt"/>
786
+ <line num="102" count="2" type="stmt"/>
787
+ <line num="103" count="2" type="stmt"/>
788
+ <line num="111" count="5" type="cond" truecount="4" falsecount="0"/>
789
+ <line num="112" count="1" type="stmt"/>
790
+ <line num="116" count="1" type="stmt"/>
791
+ <line num="126" count="12" type="cond" truecount="0" falsecount="2"/>
792
+ </file>
793
+ </package>
794
+ <package name="src.Server">
795
+ <metrics statements="34" coveredstatements="34" conditionals="23" coveredconditionals="23" methods="11" coveredmethods="11"/>
796
+ <file name="RouteResolver.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/RouteResolver.ts">
797
+ <metrics statements="26" coveredstatements="26" conditionals="21" coveredconditionals="21" methods="8" coveredmethods="8"/>
798
+ <line num="30" count="59" type="stmt"/>
799
+ <line num="41" count="84" type="stmt"/>
800
+ <line num="42" count="84" type="cond" truecount="2" falsecount="0"/>
801
+ <line num="43" count="55" type="cond" truecount="2" falsecount="0"/>
802
+ <line num="44" count="13" type="cond" truecount="2" falsecount="0"/>
803
+ <line num="45" count="13" type="stmt"/>
804
+ <line num="47" count="42" type="cond" truecount="2" falsecount="0"/>
805
+ <line num="48" count="42" type="stmt"/>
806
+ <line num="51" count="29" type="cond" truecount="1" falsecount="0"/>
807
+ <line num="53" count="28" type="stmt"/>
808
+ <line num="63" count="90" type="stmt"/>
809
+ <line num="64" count="90" type="cond" truecount="1" falsecount="0"/>
810
+ <line num="65" count="61" type="cond" truecount="1" falsecount="0"/>
811
+ <line num="66" count="48" type="stmt"/>
812
+ <line num="68" count="13" type="cond" truecount="4" falsecount="0"/>
813
+ <line num="70" count="29" type="stmt"/>
814
+ <line num="78" count="4" type="stmt"/>
815
+ <line num="91" count="27" type="stmt"/>
816
+ <line num="92" count="27" type="stmt"/>
817
+ <line num="93" count="27" type="stmt"/>
818
+ <line num="103" count="109" type="stmt"/>
819
+ <line num="104" count="40" type="cond" truecount="4" falsecount="0"/>
820
+ <line num="113" count="27" type="stmt"/>
821
+ <line num="114" count="87" type="stmt"/>
822
+ <line num="115" count="29" type="cond" truecount="2" falsecount="0"/>
823
+ <line num="116" count="29" type="stmt"/>
824
+ </file>
825
+ <file name="Router.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/Router.ts">
826
+ <metrics statements="8" coveredstatements="8" conditionals="2" coveredconditionals="2" methods="3" coveredmethods="3"/>
827
+ <line num="6" count="1" type="stmt"/>
828
+ <line num="7" count="1" type="stmt"/>
829
+ <line num="15" count="1" type="stmt"/>
830
+ <line num="142" count="1" type="stmt"/>
831
+ <line num="158" count="2" type="stmt"/>
832
+ <line num="159" count="2" type="cond" truecount="2" falsecount="0"/>
833
+ <line num="167" count="2" type="stmt"/>
834
+ <line num="175" count="2" type="stmt"/>
835
+ </file>
836
+ </package>
837
+ <package name="src.Server.lib">
838
+ <metrics statements="43" coveredstatements="43" conditionals="14" coveredconditionals="14" methods="12" coveredmethods="11"/>
839
+ <file name="ContainerServer.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/lib/ContainerServer.ts">
840
+ <metrics statements="12" coveredstatements="12" conditionals="0" coveredconditionals="0" methods="6" coveredmethods="5"/>
841
+ <line num="1" count="2" type="stmt"/>
842
+ <line num="2" count="2" type="stmt"/>
843
+ <line num="8" count="2" type="stmt"/>
844
+ <line num="22" count="20" type="stmt"/>
845
+ <line num="23" count="20" type="stmt"/>
846
+ <line num="24" count="20" type="stmt"/>
847
+ <line num="33" count="2" type="stmt"/>
848
+ <line num="35" count="2" type="stmt"/>
849
+ <line num="43" count="20" type="stmt"/>
850
+ <line num="52" count="27" type="stmt"/>
851
+ <line num="62" count="20" type="stmt"/>
852
+ <line num="63" count="20" type="stmt"/>
853
+ </file>
854
+ <file name="Server.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/lib/Server.ts">
855
+ <metrics statements="31" coveredstatements="31" conditionals="14" coveredconditionals="14" methods="6" coveredmethods="6"/>
856
+ <line num="2" count="3" type="stmt"/>
857
+ <line num="5" count="3" type="stmt"/>
858
+ <line num="6" count="3" type="stmt"/>
859
+ <line num="7" count="3" type="stmt"/>
860
+ <line num="9" count="3" type="stmt"/>
861
+ <line num="14" count="3" type="stmt"/>
862
+ <line num="34" count="22" type="stmt"/>
863
+ <line num="35" count="22" type="stmt"/>
864
+ <line num="43" count="2" type="stmt"/>
865
+ <line num="54" count="18" type="stmt"/>
866
+ <line num="58" count="18" type="stmt"/>
867
+ <line num="59" count="18" type="stmt"/>
868
+ <line num="60" count="18" type="stmt"/>
869
+ <line num="61" count="18" type="cond" truecount="1" falsecount="0"/>
870
+ <line num="62" count="15" type="stmt"/>
871
+ <line num="64" count="15" type="cond" truecount="1" falsecount="0"/>
872
+ <line num="65" count="6" type="stmt"/>
873
+ <line num="66" count="6" type="cond" truecount="3" falsecount="0"/>
874
+ <line num="70" count="10" type="cond" truecount="1" falsecount="0"/>
875
+ <line num="71" count="5" type="stmt"/>
876
+ <line num="75" count="5" type="cond" truecount="3" falsecount="0"/>
877
+ <line num="79" count="6" type="stmt"/>
878
+ <line num="81" count="6" type="cond" truecount="1" falsecount="0"/>
879
+ <line num="82" count="2" type="stmt"/>
880
+ <line num="83" count="2" type="cond" truecount="3" falsecount="0"/>
881
+ <line num="87" count="5" type="stmt"/>
882
+ <line num="90" count="3" type="stmt"/>
883
+ <line num="101" count="6" type="stmt"/>
884
+ <line num="102" count="6" type="stmt"/>
885
+ <line num="103" count="6" type="stmt"/>
886
+ <line num="104" count="6" type="cond" truecount="1" falsecount="0"/>
887
+ </file>
888
+ </package>
889
+ <package name="src.Server.lib.container">
890
+ <metrics statements="107" coveredstatements="105" conditionals="85" coveredconditionals="80" methods="33" coveredmethods="32"/>
891
+ <file name="GenericHandler.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/lib/container/GenericHandler.ts">
892
+ <metrics statements="28" coveredstatements="27" conditionals="23" coveredconditionals="19" methods="5" coveredmethods="4"/>
893
+ <line num="3" count="4" type="stmt"/>
894
+ <line num="4" count="4" type="stmt"/>
895
+ <line num="5" count="4" type="stmt"/>
896
+ <line num="13" count="4" type="stmt"/>
897
+ <line num="20" count="35" type="stmt"/>
898
+ <line num="21" count="27" type="stmt"/>
899
+ <line num="22" count="27" type="stmt"/>
900
+ <line num="24" count="27" type="stmt"/>
901
+ <line num="26" count="27" type="stmt"/>
902
+ <line num="28" count="26" type="stmt"/>
903
+ <line num="30" count="1" type="stmt"/>
904
+ <line num="31" count="1" type="stmt"/>
905
+ <line num="32" count="1" type="stmt"/>
906
+ <line num="38" count="27" type="stmt"/>
907
+ <line num="48" count="4" type="stmt"/>
908
+ <line num="50" count="26" type="cond" truecount="4" falsecount="0"/>
909
+ <line num="52" count="1" type="stmt"/>
910
+ <line num="53" count="25" type="cond" truecount="4" falsecount="0"/>
911
+ <line num="55" count="1" type="stmt"/>
912
+ <line num="61" count="24" type="cond" truecount="1" falsecount="0"/>
913
+ <line num="62" count="20" type="stmt"/>
914
+ <line num="63" count="56" type="stmt"/>
915
+ <line num="67" count="24" type="stmt"/>
916
+ <line num="69" count="24" type="cond" truecount="8" falsecount="2"/>
917
+ <line num="70" count="0" type="stmt"/>
918
+ <line num="72" count="24" type="cond" truecount="2" falsecount="0"/>
919
+ <line num="74" count="24" type="stmt"/>
920
+ <line num="83" count="4" type="cond" truecount="0" falsecount="2"/>
921
+ </file>
922
+ <file name="GenericHandlerEvent.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/lib/container/GenericHandlerEvent.ts">
923
+ <metrics statements="19" coveredstatements="19" conditionals="37" coveredconditionals="37" methods="11" coveredmethods="11"/>
924
+ <line num="2" count="5" type="stmt"/>
925
+ <line num="5" count="5" type="stmt"/>
926
+ <line num="6" count="5" type="stmt"/>
927
+ <line num="24" count="5" type="stmt"/>
928
+ <line num="44" count="33" type="stmt"/>
929
+ <line num="45" count="33" type="stmt"/>
930
+ <line num="54" count="33" type="stmt"/>
931
+ <line num="55" count="33" type="stmt"/>
932
+ <line num="57" count="33" type="stmt"/>
933
+ <line num="58" count="33" type="stmt"/>
934
+ <line num="59" count="31" type="stmt"/>
935
+ <line num="62" count="33" type="stmt"/>
936
+ <line num="64" count="2" type="stmt"/>
937
+ <line num="74" count="33" type="stmt"/>
938
+ <line num="137" count="33" type="stmt"/>
939
+ <line num="141" count="2" type="stmt"/>
940
+ <line num="143" count="2" type="stmt"/>
941
+ <line num="144" count="2" type="stmt"/>
942
+ <line num="145" count="27" type="stmt"/>
943
+ </file>
944
+ <file name="HealthHandler.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/lib/container/HealthHandler.ts">
945
+ <metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
946
+ <line num="9" count="7" type="stmt"/>
947
+ <line num="10" count="7" type="stmt"/>
948
+ </file>
949
+ <file name="Proxy.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/lib/container/Proxy.ts">
950
+ <metrics statements="45" coveredstatements="44" conditionals="21" coveredconditionals="20" methods="13" coveredmethods="13"/>
951
+ <line num="1" count="3" type="stmt"/>
952
+ <line num="2" count="3" type="stmt"/>
953
+ <line num="4" count="3" type="stmt"/>
954
+ <line num="5" count="3" type="stmt"/>
955
+ <line num="8" count="3" type="stmt"/>
956
+ <line num="9" count="3" type="stmt"/>
957
+ <line num="10" count="3" type="stmt"/>
958
+ <line num="11" count="3" type="stmt"/>
959
+ <line num="15" count="3" type="stmt"/>
960
+ <line num="20" count="3" type="stmt"/>
961
+ <line num="55" count="30" type="stmt"/>
962
+ <line num="56" count="30" type="stmt"/>
963
+ <line num="57" count="30" type="stmt"/>
964
+ <line num="58" count="30" type="stmt"/>
965
+ <line num="60" count="30" type="stmt"/>
966
+ <line num="63" count="5" type="stmt"/>
967
+ <line num="68" count="30" type="cond" truecount="2" falsecount="0"/>
968
+ <line num="69" count="30" type="stmt"/>
969
+ <line num="95" count="30" type="stmt"/>
970
+ <line num="96" count="29" type="stmt"/>
971
+ <line num="105" count="38" type="stmt"/>
972
+ <line num="114" count="30" type="stmt"/>
973
+ <line num="115" count="30" type="cond" truecount="2" falsecount="0"/>
974
+ <line num="116" count="30" type="stmt"/>
975
+ <line num="118" count="30" type="stmt"/>
976
+ <line num="120" count="30" type="cond" truecount="2" falsecount="0"/>
977
+ <line num="122" count="30" type="cond" truecount="0" falsecount="1"/>
978
+ <line num="123" count="0" type="stmt"/>
979
+ <line num="125" count="30" type="stmt"/>
980
+ <line num="126" count="29" type="stmt"/>
981
+ <line num="127" count="29" type="stmt"/>
982
+ <line num="138" count="38" type="cond" truecount="1" falsecount="0"/>
983
+ <line num="139" count="30" type="stmt"/>
984
+ <line num="140" count="30" type="stmt"/>
985
+ <line num="141" count="30" type="stmt"/>
986
+ <line num="142" count="30" type="stmt"/>
987
+ <line num="143" count="30" type="cond" truecount="2" falsecount="0"/>
988
+ <line num="144" count="30" type="cond" truecount="1" falsecount="0"/>
989
+ <line num="145" count="30" type="stmt"/>
990
+ <line num="146" count="30" type="cond" truecount="2" falsecount="0"/>
991
+ <line num="147" count="30" type="stmt"/>
992
+ <line num="159" count="29" type="stmt"/>
993
+ <line num="164" count="29" type="stmt"/>
994
+ <line num="170" count="29" type="stmt"/>
995
+ <line num="179" count="124" type="cond" truecount="2" falsecount="0"/>
996
+ </file>
997
+ <file name="Utils.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Server/lib/container/Utils.ts">
998
+ <metrics statements="13" coveredstatements="13" conditionals="4" coveredconditionals="4" methods="2" coveredmethods="2"/>
999
+ <line num="6" count="6" type="stmt"/>
1000
+ <line num="9" count="36" type="stmt"/>
1001
+ <line num="11" count="36" type="cond" truecount="1" falsecount="0"/>
1002
+ <line num="12" count="4" type="stmt"/>
1003
+ <line num="14" count="4" type="stmt"/>
1004
+ <line num="15" count="7" type="stmt"/>
1005
+ <line num="16" count="7" type="cond" truecount="2" falsecount="0"/>
1006
+ <line num="17" count="6" type="stmt"/>
1007
+ <line num="19" count="4" type="stmt"/>
1008
+ <line num="27" count="6" type="stmt"/>
1009
+ <line num="30" count="24" type="stmt"/>
1010
+ <line num="31" count="24" type="cond" truecount="1" falsecount="0"/>
1011
+ <line num="32" count="4" type="stmt"/>
1012
+ </file>
1013
+ </package>
1014
+ <package name="src.Util">
1015
+ <metrics statements="47" coveredstatements="44" conditionals="26" coveredconditionals="24" methods="16" coveredmethods="14"/>
1016
+ <file name="AsyncSingleton.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Util/AsyncSingleton.ts">
1017
+ <metrics statements="28" coveredstatements="25" conditionals="5" coveredconditionals="4" methods="9" coveredmethods="7"/>
1018
+ <line num="6" count="2" type="stmt"/>
1019
+ <line num="10" count="2" type="stmt"/>
1020
+ <line num="11" count="2" type="stmt"/>
1021
+ <line num="22" count="0" type="cond" truecount="0" falsecount="1"/>
1022
+ <line num="24" count="2" type="stmt"/>
1023
+ <line num="25" count="2" type="stmt"/>
1024
+ <line num="33" count="16" type="cond" truecount="3" falsecount="0"/>
1025
+ <line num="35" count="10" type="cond" truecount="1" falsecount="0"/>
1026
+ <line num="36" count="2" type="stmt"/>
1027
+ <line num="39" count="8" type="stmt"/>
1028
+ <line num="46" count="8" type="stmt"/>
1029
+ <line num="53" count="6" type="stmt"/>
1030
+ <line num="54" count="6" type="stmt"/>
1031
+ <line num="55" count="0" type="stmt"/>
1032
+ <line num="57" count="6" type="stmt"/>
1033
+ <line num="61" count="8" type="stmt"/>
1034
+ <line num="62" count="8" type="stmt"/>
1035
+ <line num="63" count="8" type="stmt"/>
1036
+ <line num="65" count="8" type="stmt"/>
1037
+ <line num="66" count="2" type="stmt"/>
1038
+ <line num="69" count="8" type="stmt"/>
1039
+ <line num="71" count="8" type="stmt"/>
1040
+ <line num="73" count="8" type="stmt"/>
1041
+ <line num="74" count="0" type="stmt"/>
1042
+ <line num="76" count="8" type="stmt"/>
1043
+ <line num="81" count="2" type="stmt"/>
1044
+ <line num="82" count="2" type="stmt"/>
1045
+ <line num="84" count="2" type="stmt"/>
1046
+ </file>
1047
+ <file name="Utils.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Util/Utils.ts">
1048
+ <metrics statements="19" coveredstatements="19" conditionals="21" coveredconditionals="20" methods="7" coveredmethods="7"/>
1049
+ <line num="4" count="17" type="stmt"/>
1050
+ <line num="10" count="723" type="stmt"/>
1051
+ <line num="19" count="8" type="cond" truecount="5" falsecount="1"/>
1052
+ <line num="28" count="32" type="cond" truecount="2" falsecount="0"/>
1053
+ <line num="29" count="32" type="cond" truecount="2" falsecount="0"/>
1054
+ <line num="39" count="57" type="stmt"/>
1055
+ <line num="40" count="57" type="stmt"/>
1056
+ <line num="41" count="57" type="cond" truecount="2" falsecount="0"/>
1057
+ <line num="42" count="54" type="cond" truecount="3" falsecount="0"/>
1058
+ <line num="46" count="57" type="stmt"/>
1059
+ <line num="55" count="7" type="stmt"/>
1060
+ <line num="56" count="7" type="stmt"/>
1061
+ <line num="57" count="7" type="stmt"/>
1062
+ <line num="59" count="1" type="stmt"/>
1063
+ <line num="61" count="7" type="cond" truecount="2" falsecount="0"/>
1064
+ <line num="71" count="42" type="cond" truecount="1" falsecount="0"/>
1065
+ <line num="72" count="26" type="stmt"/>
1066
+ <line num="73" count="26" type="cond" truecount="3" falsecount="0"/>
1067
+ <line num="74" count="7" type="stmt"/>
1068
+ </file>
1069
+ </package>
1070
+ <package name="src.Validation">
1071
+ <metrics statements="11" coveredstatements="10" conditionals="6" coveredconditionals="5" methods="1" coveredmethods="1"/>
1072
+ <file name="Validator.ts" path="/Users/gwdebes/Desktop/creator/repos/Wapi/src/Validation/Validator.ts">
1073
+ <metrics statements="11" coveredstatements="10" conditionals="6" coveredconditionals="5" methods="1" coveredmethods="1"/>
1074
+ <line num="1" count="4" type="stmt"/>
1075
+ <line num="3" count="4" type="stmt"/>
1076
+ <line num="4" count="4" type="stmt"/>
1077
+ <line num="12" count="4" type="stmt"/>
1078
+ <line num="26" count="20" type="stmt"/>
1079
+ <line num="27" count="20" type="stmt"/>
1080
+ <line num="29" count="16" type="cond" truecount="1" falsecount="1"/>
1081
+ <line num="30" count="0" type="stmt"/>
1082
+ <line num="34" count="20" type="cond" truecount="4" falsecount="0"/>
1083
+ <line num="35" count="16" type="stmt"/>
1084
+ <line num="41" count="4" type="stmt"/>
1085
+ </file>
1086
+ </package>
1087
+ </project>
1088
+ </coverage>