@breautek/storm 4.4.0 → 4.5.0

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 (90) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/docs/README.md +19 -4
  3. package/docs/classes/Application.md +26 -26
  4. package/docs/classes/BackendAuthenticationMiddleware.md +2 -2
  5. package/docs/classes/CORSMiddleware.md +6 -6
  6. package/docs/classes/ConfigLoader.md +1 -1
  7. package/docs/classes/Database.md +12 -12
  8. package/docs/classes/DatabaseCastObject.md +79 -0
  9. package/docs/classes/DatabaseConnection.md +19 -19
  10. package/docs/classes/DatabaseQueryError.md +10 -10
  11. package/docs/classes/DeadLockError.md +10 -10
  12. package/docs/classes/DiskSpaceError.md +10 -10
  13. package/docs/classes/DropTemporaryTableQuery.md +8 -8
  14. package/docs/classes/DumpStream.md +1 -1
  15. package/docs/classes/DuplicateEntryError.md +10 -10
  16. package/docs/classes/EntityNotFoundError.md +10 -10
  17. package/docs/classes/ExpiredTokenError.md +10 -10
  18. package/docs/classes/Handler.md +14 -14
  19. package/docs/classes/InternalError.md +10 -10
  20. package/docs/classes/InvalidCredentialsError.md +10 -10
  21. package/docs/classes/InvalidValueError.md +10 -10
  22. package/docs/classes/LineString.md +101 -0
  23. package/docs/classes/ManagedDatabaseConnection.md +19 -19
  24. package/docs/classes/Middleware.md +3 -3
  25. package/docs/classes/MissingConfigError.md +10 -10
  26. package/docs/classes/MissingParameterError.md +10 -10
  27. package/docs/classes/MySQLConnection.md +20 -20
  28. package/docs/classes/MySQLDatabase.md +13 -13
  29. package/docs/classes/NotImplementedError.md +10 -10
  30. package/docs/classes/Point.md +102 -0
  31. package/docs/classes/Polygon.md +101 -0
  32. package/docs/classes/Query.md +8 -8
  33. package/docs/classes/RawError.md +10 -10
  34. package/docs/classes/RawQuery.md +8 -8
  35. package/docs/classes/Request.md +18 -18
  36. package/docs/classes/Response.md +11 -11
  37. package/docs/classes/ResponseData.md +7 -7
  38. package/docs/classes/ServiceProvider.md +15 -15
  39. package/docs/classes/ServiceResponse.md +4 -4
  40. package/docs/classes/SetSessionVariableQuery.md +8 -8
  41. package/docs/classes/StormError.md +10 -10
  42. package/docs/classes/TemporaryTableQuery.md +8 -8
  43. package/docs/classes/Token.md +2 -2
  44. package/docs/classes/TokenManager.md +4 -4
  45. package/docs/classes/UnauthorizedAccessError.md +10 -10
  46. package/docs/enums/ErrorCode.md +9 -9
  47. package/docs/enums/ExitCode.md +2 -2
  48. package/docs/enums/HTTPMethod.md +4 -4
  49. package/docs/enums/JWTError.md +2 -2
  50. package/docs/enums/StatusCode.md +48 -48
  51. package/docs/interfaces/IConfig.md +8 -8
  52. package/docs/interfaces/IDatabaseConfig.md +6 -6
  53. package/docs/interfaces/IDatabaseConnection.md +14 -14
  54. package/docs/interfaces/IErrorResponse.md +5 -5
  55. package/docs/interfaces/IFormData.md +2 -2
  56. package/docs/interfaces/IHandler.md +1 -1
  57. package/docs/interfaces/IInsertQueryResult.md +3 -3
  58. package/docs/interfaces/IJWTVerifyOptions.md +1 -1
  59. package/docs/interfaces/IRequestResponse.md +2 -2
  60. package/docs/interfaces/ISetSessionVariableQueryInput.md +2 -2
  61. package/docs/interfaces/ITemporaryTableQueryInput.md +2 -2
  62. package/docs/interfaces/IUpdateQueryResult.md +2 -2
  63. package/lib/DatabaseCastObject.d.ts +5 -0
  64. package/lib/DatabaseCastObject.js +29 -0
  65. package/lib/DatabaseCastObject.js.map +1 -0
  66. package/lib/LineString.d.ts +7 -0
  67. package/lib/LineString.js +41 -0
  68. package/lib/LineString.js.map +1 -0
  69. package/lib/MySQLConnection.js +2 -0
  70. package/lib/MySQLConnection.js.map +1 -1
  71. package/lib/Point.d.ts +7 -0
  72. package/lib/Point.js +31 -0
  73. package/lib/Point.js.map +1 -0
  74. package/lib/Polygon.d.ts +7 -0
  75. package/lib/Polygon.js +52 -0
  76. package/lib/Polygon.js.map +1 -0
  77. package/lib/TCoordinate.d.ts +1 -0
  78. package/lib/TCoordinate.js +18 -0
  79. package/lib/TCoordinate.js.map +1 -0
  80. package/lib/api.d.ts +5 -0
  81. package/lib/api.js +9 -1
  82. package/lib/api.js.map +1 -1
  83. package/package.json +1 -1
  84. package/src/DatabaseCastObject.ts +29 -0
  85. package/src/LineString.ts +47 -0
  86. package/src/MySQLConnection.ts +2 -0
  87. package/src/Point.ts +33 -0
  88. package/src/Polygon.ts +60 -0
  89. package/src/TCoordinate.ts +17 -0
  90. package/src/api.ts +7 -0
@@ -50,7 +50,7 @@
50
50
 
51
51
  #### Defined in
52
52
 
53
- [src/Response.ts:38](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L38)
53
+ [src/Response.ts:38](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L38)
54
54
 
55
55
  ## Methods
56
56
 
@@ -70,7 +70,7 @@
70
70
 
71
71
  #### Defined in
72
72
 
73
- [src/Response.ts:130](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L130)
73
+ [src/Response.ts:130](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L130)
74
74
 
75
75
  ___
76
76
 
@@ -84,7 +84,7 @@ ___
84
84
 
85
85
  #### Defined in
86
86
 
87
- [src/Response.ts:49](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L49)
87
+ [src/Response.ts:49](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L49)
88
88
 
89
89
  ___
90
90
 
@@ -98,7 +98,7 @@ ___
98
98
 
99
99
  #### Defined in
100
100
 
101
- [src/Response.ts:126](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L126)
101
+ [src/Response.ts:126](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L126)
102
102
 
103
103
  ___
104
104
 
@@ -118,7 +118,7 @@ ___
118
118
 
119
119
  #### Defined in
120
120
 
121
- [src/Response.ts:99](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L99)
121
+ [src/Response.ts:99](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L99)
122
122
 
123
123
  ___
124
124
 
@@ -138,7 +138,7 @@ ___
138
138
 
139
139
  #### Defined in
140
140
 
141
- [src/Response.ts:53](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L53)
141
+ [src/Response.ts:53](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L53)
142
142
 
143
143
  ___
144
144
 
@@ -158,7 +158,7 @@ ___
158
158
 
159
159
  #### Defined in
160
160
 
161
- [src/Response.ts:94](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L94)
161
+ [src/Response.ts:94](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L94)
162
162
 
163
163
  ___
164
164
 
@@ -179,7 +179,7 @@ ___
179
179
 
180
180
  #### Defined in
181
181
 
182
- [src/Response.ts:118](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L118)
182
+ [src/Response.ts:118](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L118)
183
183
 
184
184
  ___
185
185
 
@@ -199,7 +199,7 @@ ___
199
199
 
200
200
  #### Defined in
201
201
 
202
- [src/Response.ts:122](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L122)
202
+ [src/Response.ts:122](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L122)
203
203
 
204
204
  ___
205
205
 
@@ -219,7 +219,7 @@ ___
219
219
 
220
220
  #### Defined in
221
221
 
222
- [src/Response.ts:44](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L44)
222
+ [src/Response.ts:44](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L44)
223
223
 
224
224
  ___
225
225
 
@@ -239,4 +239,4 @@ ___
239
239
 
240
240
  #### Defined in
241
241
 
242
- [src/Response.ts:107](https://github.com/breautek/storm/blob/0875c73/src/Response.ts#L107)
242
+ [src/Response.ts:107](https://github.com/breautek/storm/blob/dc7102f/src/Response.ts#L107)
@@ -44,7 +44,7 @@
44
44
 
45
45
  #### Defined in
46
46
 
47
- [src/ResponseData.ts:25](https://github.com/breautek/storm/blob/0875c73/src/ResponseData.ts#L25)
47
+ [src/ResponseData.ts:25](https://github.com/breautek/storm/blob/dc7102f/src/ResponseData.ts#L25)
48
48
 
49
49
  ## Methods
50
50
 
@@ -58,7 +58,7 @@
58
58
 
59
59
  #### Defined in
60
60
 
61
- [src/ResponseData.ts:44](https://github.com/breautek/storm/blob/0875c73/src/ResponseData.ts#L44)
61
+ [src/ResponseData.ts:44](https://github.com/breautek/storm/blob/dc7102f/src/ResponseData.ts#L44)
62
62
 
63
63
  ___
64
64
 
@@ -72,7 +72,7 @@ ___
72
72
 
73
73
  #### Defined in
74
74
 
75
- [src/ResponseData.ts:36](https://github.com/breautek/storm/blob/0875c73/src/ResponseData.ts#L36)
75
+ [src/ResponseData.ts:36](https://github.com/breautek/storm/blob/dc7102f/src/ResponseData.ts#L36)
76
76
 
77
77
  ___
78
78
 
@@ -86,7 +86,7 @@ ___
86
86
 
87
87
  #### Defined in
88
88
 
89
- [src/ResponseData.ts:52](https://github.com/breautek/storm/blob/0875c73/src/ResponseData.ts#L52)
89
+ [src/ResponseData.ts:52](https://github.com/breautek/storm/blob/dc7102f/src/ResponseData.ts#L52)
90
90
 
91
91
  ___
92
92
 
@@ -100,7 +100,7 @@ ___
100
100
 
101
101
  #### Defined in
102
102
 
103
- [src/ResponseData.ts:40](https://github.com/breautek/storm/blob/0875c73/src/ResponseData.ts#L40)
103
+ [src/ResponseData.ts:40](https://github.com/breautek/storm/blob/dc7102f/src/ResponseData.ts#L40)
104
104
 
105
105
  ___
106
106
 
@@ -120,7 +120,7 @@ ___
120
120
 
121
121
  #### Defined in
122
122
 
123
- [src/ResponseData.ts:48](https://github.com/breautek/storm/blob/0875c73/src/ResponseData.ts#L48)
123
+ [src/ResponseData.ts:48](https://github.com/breautek/storm/blob/dc7102f/src/ResponseData.ts#L48)
124
124
 
125
125
  ___
126
126
 
@@ -141,4 +141,4 @@ ___
141
141
 
142
142
  #### Defined in
143
143
 
144
- [src/ResponseData.ts:32](https://github.com/breautek/storm/blob/0875c73/src/ResponseData.ts#L32)
144
+ [src/ResponseData.ts:32](https://github.com/breautek/storm/blob/dc7102f/src/ResponseData.ts#L32)
@@ -39,7 +39,7 @@
39
39
 
40
40
  #### Defined in
41
41
 
42
- [src/ServiceProvider.ts:29](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L29)
42
+ [src/ServiceProvider.ts:29](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L29)
43
43
 
44
44
  ## Methods
45
45
 
@@ -60,7 +60,7 @@
60
60
 
61
61
  #### Defined in
62
62
 
63
- [src/ServiceProvider.ts:64](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L64)
63
+ [src/ServiceProvider.ts:64](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L64)
64
64
 
65
65
  ___
66
66
 
@@ -74,7 +74,7 @@ ___
74
74
 
75
75
  #### Defined in
76
76
 
77
- [src/ServiceProvider.ts:36](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L36)
77
+ [src/ServiceProvider.ts:36](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L36)
78
78
 
79
79
  ___
80
80
 
@@ -88,7 +88,7 @@ ___
88
88
 
89
89
  #### Defined in
90
90
 
91
- [src/ServiceProvider.ts:33](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L33)
91
+ [src/ServiceProvider.ts:33](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L33)
92
92
 
93
93
  ___
94
94
 
@@ -102,7 +102,7 @@ ___
102
102
 
103
103
  #### Defined in
104
104
 
105
- [src/ServiceProvider.ts:44](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L44)
105
+ [src/ServiceProvider.ts:44](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L44)
106
106
 
107
107
  ___
108
108
 
@@ -116,7 +116,7 @@ ___
116
116
 
117
117
  #### Defined in
118
118
 
119
- [src/ServiceProvider.ts:34](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L34)
119
+ [src/ServiceProvider.ts:34](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L34)
120
120
 
121
121
  ___
122
122
 
@@ -130,7 +130,7 @@ ___
130
130
 
131
131
  #### Defined in
132
132
 
133
- [src/ServiceProvider.ts:56](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L56)
133
+ [src/ServiceProvider.ts:56](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L56)
134
134
 
135
135
  ___
136
136
 
@@ -154,7 +154,7 @@ ___
154
154
 
155
155
  #### Defined in
156
156
 
157
- [src/ServiceProvider.ts:157](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L157)
157
+ [src/ServiceProvider.ts:157](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L157)
158
158
 
159
159
  ___
160
160
 
@@ -178,7 +178,7 @@ ___
178
178
 
179
179
  #### Defined in
180
180
 
181
- [src/ServiceProvider.ts:142](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L142)
181
+ [src/ServiceProvider.ts:142](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L142)
182
182
 
183
183
  ___
184
184
 
@@ -192,7 +192,7 @@ ___
192
192
 
193
193
  #### Defined in
194
194
 
195
- [src/ServiceProvider.ts:40](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L40)
195
+ [src/ServiceProvider.ts:40](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L40)
196
196
 
197
197
  ___
198
198
 
@@ -206,7 +206,7 @@ ___
206
206
 
207
207
  #### Defined in
208
208
 
209
- [src/ServiceProvider.ts:60](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L60)
209
+ [src/ServiceProvider.ts:60](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L60)
210
210
 
211
211
  ___
212
212
 
@@ -230,7 +230,7 @@ ___
230
230
 
231
231
  #### Defined in
232
232
 
233
- [src/ServiceProvider.ts:147](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L147)
233
+ [src/ServiceProvider.ts:147](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L147)
234
234
 
235
235
  ___
236
236
 
@@ -254,7 +254,7 @@ ___
254
254
 
255
255
  #### Defined in
256
256
 
257
- [src/ServiceProvider.ts:152](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L152)
257
+ [src/ServiceProvider.ts:152](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L152)
258
258
 
259
259
  ___
260
260
 
@@ -279,7 +279,7 @@ ___
279
279
 
280
280
  #### Defined in
281
281
 
282
- [src/ServiceProvider.ts:82](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L82)
282
+ [src/ServiceProvider.ts:82](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L82)
283
283
 
284
284
  ___
285
285
 
@@ -293,4 +293,4 @@ ___
293
293
 
294
294
  #### Defined in
295
295
 
296
- [src/ServiceProvider.ts:52](https://github.com/breautek/storm/blob/0875c73/src/ServiceProvider.ts#L52)
296
+ [src/ServiceProvider.ts:52](https://github.com/breautek/storm/blob/dc7102f/src/ServiceProvider.ts#L52)
@@ -29,7 +29,7 @@
29
29
 
30
30
  #### Defined in
31
31
 
32
- [src/ServiceResponse.ts:23](https://github.com/breautek/storm/blob/0875c73/src/ServiceResponse.ts#L23)
32
+ [src/ServiceResponse.ts:23](https://github.com/breautek/storm/blob/dc7102f/src/ServiceResponse.ts#L23)
33
33
 
34
34
  ## Methods
35
35
 
@@ -43,7 +43,7 @@
43
43
 
44
44
  #### Defined in
45
45
 
46
- [src/ServiceResponse.ts:36](https://github.com/breautek/storm/blob/0875c73/src/ServiceResponse.ts#L36)
46
+ [src/ServiceResponse.ts:36](https://github.com/breautek/storm/blob/dc7102f/src/ServiceResponse.ts#L36)
47
47
 
48
48
  ___
49
49
 
@@ -57,7 +57,7 @@ ___
57
57
 
58
58
  #### Defined in
59
59
 
60
- [src/ServiceResponse.ts:28](https://github.com/breautek/storm/blob/0875c73/src/ServiceResponse.ts#L28)
60
+ [src/ServiceResponse.ts:28](https://github.com/breautek/storm/blob/dc7102f/src/ServiceResponse.ts#L28)
61
61
 
62
62
  ___
63
63
 
@@ -71,4 +71,4 @@ ___
71
71
 
72
72
  #### Defined in
73
73
 
74
- [src/ServiceResponse.ts:32](https://github.com/breautek/storm/blob/0875c73/src/ServiceResponse.ts#L32)
74
+ [src/ServiceResponse.ts:32](https://github.com/breautek/storm/blob/dc7102f/src/ServiceResponse.ts#L32)
@@ -42,7 +42,7 @@
42
42
 
43
43
  #### Defined in
44
44
 
45
- [src/Query.ts:22](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L22)
45
+ [src/Query.ts:22](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L22)
46
46
 
47
47
  ## Methods
48
48
 
@@ -60,7 +60,7 @@
60
60
 
61
61
  #### Defined in
62
62
 
63
- [src/SetSessionVariableQuery.ts:12](https://github.com/breautek/storm/blob/0875c73/src/SetSessionVariableQuery.ts#L12)
63
+ [src/SetSessionVariableQuery.ts:12](https://github.com/breautek/storm/blob/dc7102f/src/SetSessionVariableQuery.ts#L12)
64
64
 
65
65
  ___
66
66
 
@@ -84,7 +84,7 @@ ___
84
84
 
85
85
  #### Defined in
86
86
 
87
- [src/Query.ts:70](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L70)
87
+ [src/Query.ts:70](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L70)
88
88
 
89
89
  ___
90
90
 
@@ -104,7 +104,7 @@ parameters that was passed into the constructor.
104
104
 
105
105
  #### Defined in
106
106
 
107
- [src/Query.ts:29](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L29)
107
+ [src/Query.ts:29](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L29)
108
108
 
109
109
  ___
110
110
 
@@ -126,7 +126,7 @@ parameters that will be used when this query is ran.
126
126
 
127
127
  #### Defined in
128
128
 
129
- [src/SetSessionVariableQuery.ts:23](https://github.com/breautek/storm/blob/0875c73/src/SetSessionVariableQuery.ts#L23)
129
+ [src/SetSessionVariableQuery.ts:23](https://github.com/breautek/storm/blob/dc7102f/src/SetSessionVariableQuery.ts#L23)
130
130
 
131
131
  ___
132
132
 
@@ -150,7 +150,7 @@ ___
150
150
 
151
151
  #### Defined in
152
152
 
153
- [src/Query.ts:44](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L44)
153
+ [src/Query.ts:44](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L44)
154
154
 
155
155
  ___
156
156
 
@@ -177,7 +177,7 @@ Override to augment/manipulate the returned result set.
177
177
 
178
178
  #### Defined in
179
179
 
180
- [src/Query.ts:65](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L65)
180
+ [src/Query.ts:65](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L65)
181
181
 
182
182
  ___
183
183
 
@@ -204,4 +204,4 @@ Can be used to set session variables or create temporary tables, etc.
204
204
 
205
205
  #### Defined in
206
206
 
207
- [src/Query.ts:55](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L55)
207
+ [src/Query.ts:55](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L55)
@@ -91,7 +91,7 @@ Error.constructor
91
91
 
92
92
  #### Defined in
93
93
 
94
- [src/StormError.ts:44](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L44)
94
+ [src/StormError.ts:44](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L44)
95
95
 
96
96
  ## Properties
97
97
 
@@ -196,7 +196,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
196
196
 
197
197
  #### Defined in
198
198
 
199
- [src/StormError.ts:55](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L55)
199
+ [src/StormError.ts:55](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L55)
200
200
 
201
201
  ___
202
202
 
@@ -210,7 +210,7 @@ ___
210
210
 
211
211
  #### Defined in
212
212
 
213
- [src/StormError.ts:76](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L76)
213
+ [src/StormError.ts:76](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L76)
214
214
 
215
215
  ___
216
216
 
@@ -224,7 +224,7 @@ ___
224
224
 
225
225
  #### Defined in
226
226
 
227
- [src/StormError.ts:97](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L97)
227
+ [src/StormError.ts:97](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L97)
228
228
 
229
229
  ___
230
230
 
@@ -238,7 +238,7 @@ ___
238
238
 
239
239
  #### Defined in
240
240
 
241
- [src/StormError.ts:72](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L72)
241
+ [src/StormError.ts:72](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L72)
242
242
 
243
243
  ___
244
244
 
@@ -252,7 +252,7 @@ ___
252
252
 
253
253
  #### Defined in
254
254
 
255
- [src/StormError.ts:89](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L89)
255
+ [src/StormError.ts:89](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L89)
256
256
 
257
257
  ___
258
258
 
@@ -266,7 +266,7 @@ ___
266
266
 
267
267
  #### Defined in
268
268
 
269
- [src/StormError.ts:93](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L93)
269
+ [src/StormError.ts:93](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L93)
270
270
 
271
271
  ___
272
272
 
@@ -280,7 +280,7 @@ ___
280
280
 
281
281
  #### Defined in
282
282
 
283
- [src/StormError.ts:54](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L54)
283
+ [src/StormError.ts:54](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L54)
284
284
 
285
285
  ___
286
286
 
@@ -297,7 +297,7 @@ They are kept secret from the client.
297
297
 
298
298
  #### Defined in
299
299
 
300
- [src/StormError.ts:68](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L68)
300
+ [src/StormError.ts:68](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L68)
301
301
 
302
302
  ___
303
303
 
@@ -313,7 +313,7 @@ Sends details to the client.
313
313
 
314
314
  #### Defined in
315
315
 
316
- [src/StormError.ts:60](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L60)
316
+ [src/StormError.ts:60](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L60)
317
317
 
318
318
  ___
319
319
 
@@ -42,7 +42,7 @@
42
42
 
43
43
  #### Defined in
44
44
 
45
- [src/Query.ts:22](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L22)
45
+ [src/Query.ts:22](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L22)
46
46
 
47
47
  ## Methods
48
48
 
@@ -66,7 +66,7 @@
66
66
 
67
67
  #### Defined in
68
68
 
69
- [src/TemporaryTableQuery.ts:35](https://github.com/breautek/storm/blob/0875c73/src/TemporaryTableQuery.ts#L35)
69
+ [src/TemporaryTableQuery.ts:35](https://github.com/breautek/storm/blob/dc7102f/src/TemporaryTableQuery.ts#L35)
70
70
 
71
71
  ___
72
72
 
@@ -90,7 +90,7 @@ ___
90
90
 
91
91
  #### Defined in
92
92
 
93
- [src/Query.ts:70](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L70)
93
+ [src/Query.ts:70](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L70)
94
94
 
95
95
  ___
96
96
 
@@ -110,7 +110,7 @@ parameters that was passed into the constructor.
110
110
 
111
111
  #### Defined in
112
112
 
113
- [src/Query.ts:29](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L29)
113
+ [src/Query.ts:29](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L29)
114
114
 
115
115
  ___
116
116
 
@@ -132,7 +132,7 @@ parameters that will be used when this query is ran.
132
132
 
133
133
  #### Defined in
134
134
 
135
- [src/TemporaryTableQuery.ts:27](https://github.com/breautek/storm/blob/0875c73/src/TemporaryTableQuery.ts#L27)
135
+ [src/TemporaryTableQuery.ts:27](https://github.com/breautek/storm/blob/dc7102f/src/TemporaryTableQuery.ts#L27)
136
136
 
137
137
  ___
138
138
 
@@ -156,7 +156,7 @@ ___
156
156
 
157
157
  #### Defined in
158
158
 
159
- [src/Query.ts:44](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L44)
159
+ [src/Query.ts:44](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L44)
160
160
 
161
161
  ___
162
162
 
@@ -183,7 +183,7 @@ Override to augment/manipulate the returned result set.
183
183
 
184
184
  #### Defined in
185
185
 
186
- [src/Query.ts:65](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L65)
186
+ [src/Query.ts:65](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L65)
187
187
 
188
188
  ___
189
189
 
@@ -210,4 +210,4 @@ Can be used to set session variables or create temporary tables, etc.
210
210
 
211
211
  #### Defined in
212
212
 
213
- [src/Query.ts:55](https://github.com/breautek/storm/blob/0875c73/src/Query.ts#L55)
213
+ [src/Query.ts:55](https://github.com/breautek/storm/blob/dc7102f/src/Query.ts#L55)
@@ -26,7 +26,7 @@
26
26
 
27
27
  #### Defined in
28
28
 
29
- [src/Token.ts:20](https://github.com/breautek/storm/blob/0875c73/src/Token.ts#L20)
29
+ [src/Token.ts:20](https://github.com/breautek/storm/blob/dc7102f/src/Token.ts#L20)
30
30
 
31
31
  ## Methods
32
32
 
@@ -40,4 +40,4 @@
40
40
 
41
41
  #### Defined in
42
42
 
43
- [src/Token.ts:24](https://github.com/breautek/storm/blob/0875c73/src/Token.ts#L24)
43
+ [src/Token.ts:24](https://github.com/breautek/storm/blob/dc7102f/src/Token.ts#L24)
@@ -40,7 +40,7 @@
40
40
 
41
41
  #### Defined in
42
42
 
43
- [src/TokenManager.ts:29](https://github.com/breautek/storm/blob/0875c73/src/TokenManager.ts#L29)
43
+ [src/TokenManager.ts:29](https://github.com/breautek/storm/blob/dc7102f/src/TokenManager.ts#L29)
44
44
 
45
45
  ## Methods
46
46
 
@@ -60,7 +60,7 @@
60
60
 
61
61
  #### Defined in
62
62
 
63
- [src/TokenManager.ts:78](https://github.com/breautek/storm/blob/0875c73/src/TokenManager.ts#L78)
63
+ [src/TokenManager.ts:78](https://github.com/breautek/storm/blob/dc7102f/src/TokenManager.ts#L78)
64
64
 
65
65
  ___
66
66
 
@@ -81,7 +81,7 @@ ___
81
81
 
82
82
  #### Defined in
83
83
 
84
- [src/TokenManager.ts:33](https://github.com/breautek/storm/blob/0875c73/src/TokenManager.ts#L33)
84
+ [src/TokenManager.ts:33](https://github.com/breautek/storm/blob/dc7102f/src/TokenManager.ts#L33)
85
85
 
86
86
  ___
87
87
 
@@ -102,4 +102,4 @@ ___
102
102
 
103
103
  #### Defined in
104
104
 
105
- [src/TokenManager.ts:56](https://github.com/breautek/storm/blob/0875c73/src/TokenManager.ts#L56)
105
+ [src/TokenManager.ts:56](https://github.com/breautek/storm/blob/dc7102f/src/TokenManager.ts#L56)
@@ -53,7 +53,7 @@
53
53
 
54
54
  #### Defined in
55
55
 
56
- [src/UnauthorizedAccessError.ts:22](https://github.com/breautek/storm/blob/0875c73/src/UnauthorizedAccessError.ts#L22)
56
+ [src/UnauthorizedAccessError.ts:22](https://github.com/breautek/storm/blob/dc7102f/src/UnauthorizedAccessError.ts#L22)
57
57
 
58
58
  ## Properties
59
59
 
@@ -162,7 +162,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
162
162
 
163
163
  #### Defined in
164
164
 
165
- [src/UnauthorizedAccessError.ts:30](https://github.com/breautek/storm/blob/0875c73/src/UnauthorizedAccessError.ts#L30)
165
+ [src/UnauthorizedAccessError.ts:30](https://github.com/breautek/storm/blob/dc7102f/src/UnauthorizedAccessError.ts#L30)
166
166
 
167
167
  ___
168
168
 
@@ -180,7 +180,7 @@ ___
180
180
 
181
181
  #### Defined in
182
182
 
183
- [src/StormError.ts:76](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L76)
183
+ [src/StormError.ts:76](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L76)
184
184
 
185
185
  ___
186
186
 
@@ -198,7 +198,7 @@ ___
198
198
 
199
199
  #### Defined in
200
200
 
201
- [src/StormError.ts:97](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L97)
201
+ [src/StormError.ts:97](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L97)
202
202
 
203
203
  ___
204
204
 
@@ -216,7 +216,7 @@ ___
216
216
 
217
217
  #### Defined in
218
218
 
219
- [src/UnauthorizedAccessError.ts:34](https://github.com/breautek/storm/blob/0875c73/src/UnauthorizedAccessError.ts#L34)
219
+ [src/UnauthorizedAccessError.ts:34](https://github.com/breautek/storm/blob/dc7102f/src/UnauthorizedAccessError.ts#L34)
220
220
 
221
221
  ___
222
222
 
@@ -234,7 +234,7 @@ ___
234
234
 
235
235
  #### Defined in
236
236
 
237
- [src/UnauthorizedAccessError.ts:38](https://github.com/breautek/storm/blob/0875c73/src/UnauthorizedAccessError.ts#L38)
237
+ [src/UnauthorizedAccessError.ts:38](https://github.com/breautek/storm/blob/dc7102f/src/UnauthorizedAccessError.ts#L38)
238
238
 
239
239
  ___
240
240
 
@@ -252,7 +252,7 @@ ___
252
252
 
253
253
  #### Defined in
254
254
 
255
- [src/StormError.ts:93](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L93)
255
+ [src/StormError.ts:93](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L93)
256
256
 
257
257
  ___
258
258
 
@@ -270,7 +270,7 @@ ___
270
270
 
271
271
  #### Defined in
272
272
 
273
- [src/UnauthorizedAccessError.ts:26](https://github.com/breautek/storm/blob/0875c73/src/UnauthorizedAccessError.ts#L26)
273
+ [src/UnauthorizedAccessError.ts:26](https://github.com/breautek/storm/blob/dc7102f/src/UnauthorizedAccessError.ts#L26)
274
274
 
275
275
  ___
276
276
 
@@ -291,7 +291,7 @@ They are kept secret from the client.
291
291
 
292
292
  #### Defined in
293
293
 
294
- [src/StormError.ts:68](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L68)
294
+ [src/StormError.ts:68](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L68)
295
295
 
296
296
  ___
297
297
 
@@ -311,7 +311,7 @@ Sends details to the client.
311
311
 
312
312
  #### Defined in
313
313
 
314
- [src/StormError.ts:60](https://github.com/breautek/storm/blob/0875c73/src/StormError.ts#L60)
314
+ [src/StormError.ts:60](https://github.com/breautek/storm/blob/dc7102f/src/StormError.ts#L60)
315
315
 
316
316
  ___
317
317