@breautek/storm 4.3.0 → 4.4.1

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 (74) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/docs/README.md +28 -20
  3. package/docs/classes/Application.md +158 -76
  4. package/docs/classes/BackendAuthenticationMiddleware.md +3 -3
  5. package/docs/classes/CORSMiddleware.md +8 -8
  6. package/docs/classes/ConfigLoader.md +1 -1
  7. package/docs/classes/Database.md +12 -12
  8. package/docs/classes/DatabaseConnection.md +42 -40
  9. package/docs/classes/DatabaseQueryError.md +22 -18
  10. package/docs/classes/DeadLockError.md +349 -0
  11. package/docs/classes/DiskSpaceError.md +20 -18
  12. package/docs/classes/DropTemporaryTableQuery.md +8 -8
  13. package/docs/classes/DumpStream.md +1 -1
  14. package/docs/classes/DuplicateEntryError.md +20 -18
  15. package/docs/classes/EntityNotFoundError.md +20 -18
  16. package/docs/classes/ExpiredTokenError.md +20 -18
  17. package/docs/classes/Handler.md +14 -14
  18. package/docs/classes/InternalError.md +20 -18
  19. package/docs/classes/InvalidCredentialsError.md +20 -18
  20. package/docs/classes/InvalidValueError.md +20 -18
  21. package/docs/classes/ManagedDatabaseConnection.md +19 -19
  22. package/docs/classes/Middleware.md +3 -3
  23. package/docs/classes/MissingConfigError.md +20 -18
  24. package/docs/classes/MissingParameterError.md +20 -18
  25. package/docs/classes/MySQLConnection.md +73 -43
  26. package/docs/classes/MySQLDatabase.md +13 -13
  27. package/docs/classes/NotImplementedError.md +20 -18
  28. package/docs/classes/Query.md +8 -8
  29. package/docs/classes/RawError.md +20 -20
  30. package/docs/classes/RawQuery.md +8 -8
  31. package/docs/classes/Request.md +18 -18
  32. package/docs/classes/Response.md +11 -11
  33. package/docs/classes/ResponseData.md +7 -7
  34. package/docs/classes/ServiceProvider.md +15 -15
  35. package/docs/classes/ServiceResponse.md +4 -4
  36. package/docs/classes/SetSessionVariableQuery.md +8 -8
  37. package/docs/classes/StormError.md +20 -18
  38. package/docs/classes/TemporaryTableQuery.md +8 -8
  39. package/docs/classes/Token.md +2 -2
  40. package/docs/classes/TokenManager.md +4 -4
  41. package/docs/classes/UnauthorizedAccessError.md +20 -18
  42. package/docs/enums/ErrorCode.md +18 -18
  43. package/docs/enums/ExitCode.md +4 -4
  44. package/docs/enums/HTTPMethod.md +8 -8
  45. package/docs/enums/JWTError.md +4 -4
  46. package/docs/enums/StatusCode.md +96 -96
  47. package/docs/interfaces/IConfig.md +8 -8
  48. package/docs/interfaces/IDatabaseConfig.md +6 -6
  49. package/docs/interfaces/IDatabaseConnection.md +14 -14
  50. package/docs/interfaces/IErrorResponse.md +5 -5
  51. package/docs/interfaces/IFormData.md +2 -2
  52. package/docs/interfaces/IHandler.md +1 -1
  53. package/docs/interfaces/IInsertQueryResult.md +3 -3
  54. package/docs/interfaces/IJWTVerifyOptions.md +1 -1
  55. package/docs/interfaces/IRequestResponse.md +2 -2
  56. package/docs/interfaces/ISetSessionVariableQueryInput.md +2 -2
  57. package/docs/interfaces/ITemporaryTableQueryInput.md +2 -2
  58. package/docs/interfaces/IUpdateQueryResult.md +2 -2
  59. package/docs/interfaces/formidable.File.md +3 -1
  60. package/docs/interfaces/formidable.FileJSON.md +3 -1
  61. package/docs/interfaces/formidable.Options.md +33 -11
  62. package/docs/interfaces/formidable.Part.md +65 -35
  63. package/lib/DeadLockError.d.ts +6 -0
  64. package/lib/DeadLockError.js +26 -0
  65. package/lib/DeadLockError.js.map +1 -0
  66. package/lib/MySQLConnection.js +11 -1
  67. package/lib/MySQLConnection.js.map +1 -1
  68. package/lib/api.d.ts +1 -0
  69. package/lib/api.js +3 -1
  70. package/lib/api.js.map +1 -1
  71. package/package.json +19 -18
  72. package/src/DeadLockError.ts +22 -0
  73. package/src/MySQLConnection.ts +13 -1
  74. package/src/api.ts +1 -0
@@ -41,7 +41,7 @@
41
41
 
42
42
  #### Defined in
43
43
 
44
- [src/MySQLDatabase.ts:27](https://github.com/breautek/storm/blob/4ac2f44/src/MySQLDatabase.ts#L27)
44
+ [src/MySQLDatabase.ts:27](https://github.com/breautek/storm/blob/306a47f/src/MySQLDatabase.ts#L27)
45
45
 
46
46
  ## Methods
47
47
 
@@ -66,7 +66,7 @@
66
66
 
67
67
  #### Defined in
68
68
 
69
- [src/MySQLDatabase.ts:49](https://github.com/breautek/storm/blob/4ac2f44/src/MySQLDatabase.ts#L49)
69
+ [src/MySQLDatabase.ts:49](https://github.com/breautek/storm/blob/306a47f/src/MySQLDatabase.ts#L49)
70
70
 
71
71
  ___
72
72
 
@@ -84,7 +84,7 @@ ___
84
84
 
85
85
  #### Defined in
86
86
 
87
- [src/MySQLDatabase.ts:59](https://github.com/breautek/storm/blob/4ac2f44/src/MySQLDatabase.ts#L59)
87
+ [src/MySQLDatabase.ts:59](https://github.com/breautek/storm/blob/306a47f/src/MySQLDatabase.ts#L59)
88
88
 
89
89
  ___
90
90
 
@@ -109,7 +109,7 @@ ___
109
109
 
110
110
  #### Defined in
111
111
 
112
- [src/MySQLDatabase.ts:72](https://github.com/breautek/storm/blob/4ac2f44/src/MySQLDatabase.ts#L72)
112
+ [src/MySQLDatabase.ts:72](https://github.com/breautek/storm/blob/306a47f/src/MySQLDatabase.ts#L72)
113
113
 
114
114
  ___
115
115
 
@@ -133,7 +133,7 @@ ___
133
133
 
134
134
  #### Defined in
135
135
 
136
- [src/MySQLDatabase.ts:54](https://github.com/breautek/storm/blob/4ac2f44/src/MySQLDatabase.ts#L54)
136
+ [src/MySQLDatabase.ts:54](https://github.com/breautek/storm/blob/306a47f/src/MySQLDatabase.ts#L54)
137
137
 
138
138
  ___
139
139
 
@@ -157,7 +157,7 @@ ___
157
157
 
158
158
  #### Defined in
159
159
 
160
- [src/Database.ts:31](https://github.com/breautek/storm/blob/4ac2f44/src/Database.ts#L31)
160
+ [src/Database.ts:31](https://github.com/breautek/storm/blob/306a47f/src/Database.ts#L31)
161
161
 
162
162
  ___
163
163
 
@@ -182,7 +182,7 @@ ___
182
182
 
183
183
  #### Defined in
184
184
 
185
- [src/Database.ts:45](https://github.com/breautek/storm/blob/4ac2f44/src/Database.ts#L45)
185
+ [src/Database.ts:45](https://github.com/breautek/storm/blob/306a47f/src/Database.ts#L45)
186
186
 
187
187
  ___
188
188
 
@@ -200,7 +200,7 @@ ___
200
200
 
201
201
  #### Defined in
202
202
 
203
- [src/Database.ts:77](https://github.com/breautek/storm/blob/4ac2f44/src/Database.ts#L77)
203
+ [src/Database.ts:77](https://github.com/breautek/storm/blob/306a47f/src/Database.ts#L77)
204
204
 
205
205
  ___
206
206
 
@@ -224,7 +224,7 @@ ___
224
224
 
225
225
  #### Defined in
226
226
 
227
- [src/MySQLDatabase.ts:40](https://github.com/breautek/storm/blob/4ac2f44/src/MySQLDatabase.ts#L40)
227
+ [src/MySQLDatabase.ts:40](https://github.com/breautek/storm/blob/306a47f/src/MySQLDatabase.ts#L40)
228
228
 
229
229
  ___
230
230
 
@@ -249,7 +249,7 @@ ___
249
249
 
250
250
  #### Defined in
251
251
 
252
- [src/Database.ts:64](https://github.com/breautek/storm/blob/4ac2f44/src/Database.ts#L64)
252
+ [src/Database.ts:64](https://github.com/breautek/storm/blob/306a47f/src/Database.ts#L64)
253
253
 
254
254
  ___
255
255
 
@@ -267,7 +267,7 @@ ___
267
267
 
268
268
  #### Defined in
269
269
 
270
- [src/Database.ts:40](https://github.com/breautek/storm/blob/4ac2f44/src/Database.ts#L40)
270
+ [src/Database.ts:40](https://github.com/breautek/storm/blob/306a47f/src/Database.ts#L40)
271
271
 
272
272
  ___
273
273
 
@@ -291,7 +291,7 @@ ___
291
291
 
292
292
  #### Defined in
293
293
 
294
- [src/Database.ts:54](https://github.com/breautek/storm/blob/4ac2f44/src/Database.ts#L54)
294
+ [src/Database.ts:54](https://github.com/breautek/storm/blob/306a47f/src/Database.ts#L54)
295
295
 
296
296
  ___
297
297
 
@@ -311,4 +311,4 @@ ___
311
311
 
312
312
  #### Defined in
313
313
 
314
- [src/MySQLDatabase.ts:45](https://github.com/breautek/storm/blob/4ac2f44/src/MySQLDatabase.ts#L45)
314
+ [src/MySQLDatabase.ts:45](https://github.com/breautek/storm/blob/306a47f/src/MySQLDatabase.ts#L45)
@@ -53,7 +53,7 @@
53
53
 
54
54
  #### Defined in
55
55
 
56
- [src/NotImplementedError.ts:27](https://github.com/breautek/storm/blob/4ac2f44/src/NotImplementedError.ts#L27)
56
+ [src/NotImplementedError.ts:27](https://github.com/breautek/storm/blob/306a47f/src/NotImplementedError.ts#L27)
57
57
 
58
58
  ## Properties
59
59
 
@@ -67,7 +67,7 @@
67
67
 
68
68
  #### Defined in
69
69
 
70
- node_modules/typescript/lib/lib.es5.d.ts:1029
70
+ node_modules/typescript/lib/lib.es5.d.ts:1041
71
71
 
72
72
  ___
73
73
 
@@ -81,7 +81,7 @@ ___
81
81
 
82
82
  #### Defined in
83
83
 
84
- node_modules/typescript/lib/lib.es5.d.ts:1028
84
+ node_modules/typescript/lib/lib.es5.d.ts:1040
85
85
 
86
86
  ___
87
87
 
@@ -95,7 +95,7 @@ ___
95
95
 
96
96
  #### Defined in
97
97
 
98
- node_modules/typescript/lib/lib.es5.d.ts:1030
98
+ node_modules/typescript/lib/lib.es5.d.ts:1042
99
99
 
100
100
  ___
101
101
 
@@ -109,7 +109,9 @@ ___
109
109
 
110
110
  Optional override for formatting stack traces
111
111
 
112
- **`see`** https://v8.dev/docs/stack-trace-api#customizing-stack-traces
112
+ **`See`**
113
+
114
+ https://v8.dev/docs/stack-trace-api#customizing-stack-traces
113
115
 
114
116
  ##### Parameters
115
117
 
@@ -128,7 +130,7 @@ Optional override for formatting stack traces
128
130
 
129
131
  #### Defined in
130
132
 
131
- node_modules/@types/node/globals.d.ts:11
133
+ node_modules/@types/node/ts4.8/globals.d.ts:11
132
134
 
133
135
  ___
134
136
 
@@ -142,7 +144,7 @@ ___
142
144
 
143
145
  #### Defined in
144
146
 
145
- node_modules/@types/node/globals.d.ts:13
147
+ node_modules/@types/node/ts4.8/globals.d.ts:13
146
148
 
147
149
  ## Methods
148
150
 
@@ -160,7 +162,7 @@ node_modules/@types/node/globals.d.ts:13
160
162
 
161
163
  #### Defined in
162
164
 
163
- [src/NotImplementedError.ts:38](https://github.com/breautek/storm/blob/4ac2f44/src/NotImplementedError.ts#L38)
165
+ [src/NotImplementedError.ts:38](https://github.com/breautek/storm/blob/306a47f/src/NotImplementedError.ts#L38)
164
166
 
165
167
  ___
166
168
 
@@ -178,7 +180,7 @@ ___
178
180
 
179
181
  #### Defined in
180
182
 
181
- [src/StormError.ts:76](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L76)
183
+ [src/StormError.ts:76](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L76)
182
184
 
183
185
  ___
184
186
 
@@ -196,7 +198,7 @@ ___
196
198
 
197
199
  #### Defined in
198
200
 
199
- [src/StormError.ts:97](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L97)
201
+ [src/StormError.ts:97](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L97)
200
202
 
201
203
  ___
202
204
 
@@ -214,7 +216,7 @@ ___
214
216
 
215
217
  #### Defined in
216
218
 
217
- [src/NotImplementedError.ts:42](https://github.com/breautek/storm/blob/4ac2f44/src/NotImplementedError.ts#L42)
219
+ [src/NotImplementedError.ts:42](https://github.com/breautek/storm/blob/306a47f/src/NotImplementedError.ts#L42)
218
220
 
219
221
  ___
220
222
 
@@ -232,7 +234,7 @@ ___
232
234
 
233
235
  #### Defined in
234
236
 
235
- [src/NotImplementedError.ts:46](https://github.com/breautek/storm/blob/4ac2f44/src/NotImplementedError.ts#L46)
237
+ [src/NotImplementedError.ts:46](https://github.com/breautek/storm/blob/306a47f/src/NotImplementedError.ts#L46)
236
238
 
237
239
  ___
238
240
 
@@ -250,7 +252,7 @@ ___
250
252
 
251
253
  #### Defined in
252
254
 
253
- [src/NotImplementedError.ts:50](https://github.com/breautek/storm/blob/4ac2f44/src/NotImplementedError.ts#L50)
255
+ [src/NotImplementedError.ts:50](https://github.com/breautek/storm/blob/306a47f/src/NotImplementedError.ts#L50)
254
256
 
255
257
  ___
256
258
 
@@ -268,7 +270,7 @@ ___
268
270
 
269
271
  #### Defined in
270
272
 
271
- [src/NotImplementedError.ts:33](https://github.com/breautek/storm/blob/4ac2f44/src/NotImplementedError.ts#L33)
273
+ [src/NotImplementedError.ts:33](https://github.com/breautek/storm/blob/306a47f/src/NotImplementedError.ts#L33)
272
274
 
273
275
  ___
274
276
 
@@ -276,7 +278,7 @@ ___
276
278
 
277
279
  ▸ **getPrivateDetails**(): `INotImplementedErrorOptions`
278
280
 
279
- Private details are only logged to the server log.
281
+ Private details are only logged to the server log.
280
282
  They are kept secret from the client.
281
283
 
282
284
  #### Returns
@@ -289,7 +291,7 @@ They are kept secret from the client.
289
291
 
290
292
  #### Defined in
291
293
 
292
- [src/StormError.ts:68](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L68)
294
+ [src/StormError.ts:68](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L68)
293
295
 
294
296
  ___
295
297
 
@@ -309,7 +311,7 @@ Sends details to the client.
309
311
 
310
312
  #### Defined in
311
313
 
312
- [src/StormError.ts:60](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L60)
314
+ [src/StormError.ts:60](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L60)
313
315
 
314
316
  ___
315
317
 
@@ -336,4 +338,4 @@ Create .stack property on a target object
336
338
 
337
339
  #### Defined in
338
340
 
339
- node_modules/@types/node/globals.d.ts:4
341
+ node_modules/@types/node/ts4.8/globals.d.ts:4
@@ -60,7 +60,7 @@
60
60
 
61
61
  #### Defined in
62
62
 
63
- [src/Query.ts:22](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L22)
63
+ [src/Query.ts:22](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L22)
64
64
 
65
65
  ## Methods
66
66
 
@@ -80,7 +80,7 @@
80
80
 
81
81
  #### Defined in
82
82
 
83
- [src/Query.ts:42](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L42)
83
+ [src/Query.ts:42](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L42)
84
84
 
85
85
  ___
86
86
 
@@ -100,7 +100,7 @@ ___
100
100
 
101
101
  #### Defined in
102
102
 
103
- [src/Query.ts:70](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L70)
103
+ [src/Query.ts:70](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L70)
104
104
 
105
105
  ___
106
106
 
@@ -116,7 +116,7 @@ parameters that was passed into the constructor.
116
116
 
117
117
  #### Defined in
118
118
 
119
- [src/Query.ts:29](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L29)
119
+ [src/Query.ts:29](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L29)
120
120
 
121
121
  ___
122
122
 
@@ -134,7 +134,7 @@ parameters that will be used when this query is ran.
134
134
 
135
135
  #### Defined in
136
136
 
137
- [src/Query.ts:38](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L38)
137
+ [src/Query.ts:38](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L38)
138
138
 
139
139
  ___
140
140
 
@@ -154,7 +154,7 @@ ___
154
154
 
155
155
  #### Defined in
156
156
 
157
- [src/Query.ts:44](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L44)
157
+ [src/Query.ts:44](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L44)
158
158
 
159
159
  ___
160
160
 
@@ -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/4ac2f44/src/Query.ts#L65)
180
+ [src/Query.ts:65](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L65)
181
181
 
182
182
  ___
183
183
 
@@ -200,4 +200,4 @@ Can be used to set session variables or create temporary tables, etc.
200
200
 
201
201
  #### Defined in
202
202
 
203
- [src/Query.ts:55](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L55)
203
+ [src/Query.ts:55](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L55)
@@ -58,7 +58,7 @@ tag name.
58
58
 
59
59
  #### Defined in
60
60
 
61
- [src/RawError.ts:25](https://github.com/breautek/storm/blob/4ac2f44/src/RawError.ts#L25)
61
+ [src/RawError.ts:25](https://github.com/breautek/storm/blob/306a47f/src/RawError.ts#L25)
62
62
 
63
63
  ## Properties
64
64
 
@@ -72,7 +72,7 @@ tag name.
72
72
 
73
73
  #### Defined in
74
74
 
75
- node_modules/typescript/lib/lib.es5.d.ts:1029
75
+ node_modules/typescript/lib/lib.es5.d.ts:1041
76
76
 
77
77
  ___
78
78
 
@@ -86,7 +86,7 @@ ___
86
86
 
87
87
  #### Defined in
88
88
 
89
- node_modules/typescript/lib/lib.es5.d.ts:1028
89
+ node_modules/typescript/lib/lib.es5.d.ts:1040
90
90
 
91
91
  ___
92
92
 
@@ -100,7 +100,7 @@ ___
100
100
 
101
101
  #### Defined in
102
102
 
103
- node_modules/typescript/lib/lib.es5.d.ts:1030
103
+ node_modules/typescript/lib/lib.es5.d.ts:1042
104
104
 
105
105
  ___
106
106
 
@@ -108,15 +108,15 @@ ___
108
108
 
109
109
  ▪ `Static` `Optional` **prepareStackTrace**: (`err`: `Error`, `stackTraces`: `CallSite`[]) => `any`
110
110
 
111
- Optional override for formatting stack traces
112
-
113
111
  #### Type declaration
114
112
 
115
113
  ▸ (`err`, `stackTraces`): `any`
116
114
 
117
115
  Optional override for formatting stack traces
118
116
 
119
- **`see`** https://v8.dev/docs/stack-trace-api#customizing-stack-traces
117
+ **`See`**
118
+
119
+ https://v8.dev/docs/stack-trace-api#customizing-stack-traces
120
120
 
121
121
  ##### Parameters
122
122
 
@@ -135,7 +135,7 @@ Optional override for formatting stack traces
135
135
 
136
136
  #### Defined in
137
137
 
138
- node_modules/@types/node/globals.d.ts:11
138
+ node_modules/@types/node/ts4.8/globals.d.ts:11
139
139
 
140
140
  ___
141
141
 
@@ -149,7 +149,7 @@ ___
149
149
 
150
150
  #### Defined in
151
151
 
152
- node_modules/@types/node/globals.d.ts:13
152
+ node_modules/@types/node/ts4.8/globals.d.ts:13
153
153
 
154
154
  ## Methods
155
155
 
@@ -167,7 +167,7 @@ node_modules/@types/node/globals.d.ts:13
167
167
 
168
168
  #### Defined in
169
169
 
170
- [src/RawError.ts:32](https://github.com/breautek/storm/blob/4ac2f44/src/RawError.ts#L32)
170
+ [src/RawError.ts:32](https://github.com/breautek/storm/blob/306a47f/src/RawError.ts#L32)
171
171
 
172
172
  ___
173
173
 
@@ -185,7 +185,7 @@ ___
185
185
 
186
186
  #### Defined in
187
187
 
188
- [src/StormError.ts:76](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L76)
188
+ [src/StormError.ts:76](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L76)
189
189
 
190
190
  ___
191
191
 
@@ -203,7 +203,7 @@ ___
203
203
 
204
204
  #### Defined in
205
205
 
206
- [src/StormError.ts:97](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L97)
206
+ [src/StormError.ts:97](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L97)
207
207
 
208
208
  ___
209
209
 
@@ -221,7 +221,7 @@ ___
221
221
 
222
222
  #### Defined in
223
223
 
224
- [src/StormError.ts:72](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L72)
224
+ [src/StormError.ts:72](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L72)
225
225
 
226
226
  ___
227
227
 
@@ -239,7 +239,7 @@ ___
239
239
 
240
240
  #### Defined in
241
241
 
242
- [src/StormError.ts:89](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L89)
242
+ [src/StormError.ts:89](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L89)
243
243
 
244
244
  ___
245
245
 
@@ -257,7 +257,7 @@ ___
257
257
 
258
258
  #### Defined in
259
259
 
260
- [src/StormError.ts:93](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L93)
260
+ [src/StormError.ts:93](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L93)
261
261
 
262
262
  ___
263
263
 
@@ -275,7 +275,7 @@ ___
275
275
 
276
276
  #### Defined in
277
277
 
278
- [src/RawError.ts:36](https://github.com/breautek/storm/blob/4ac2f44/src/RawError.ts#L36)
278
+ [src/RawError.ts:36](https://github.com/breautek/storm/blob/306a47f/src/RawError.ts#L36)
279
279
 
280
280
  ___
281
281
 
@@ -283,7 +283,7 @@ ___
283
283
 
284
284
  ▸ **getPrivateDetails**(): `Object`
285
285
 
286
- Private details are only logged to the server log.
286
+ Private details are only logged to the server log.
287
287
  They are kept secret from the client.
288
288
 
289
289
  #### Returns
@@ -301,7 +301,7 @@ They are kept secret from the client.
301
301
 
302
302
  #### Defined in
303
303
 
304
- [src/StormError.ts:68](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L68)
304
+ [src/StormError.ts:68](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L68)
305
305
 
306
306
  ___
307
307
 
@@ -321,7 +321,7 @@ Sends details to the client.
321
321
 
322
322
  #### Defined in
323
323
 
324
- [src/StormError.ts:60](https://github.com/breautek/storm/blob/4ac2f44/src/StormError.ts#L60)
324
+ [src/StormError.ts:60](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L60)
325
325
 
326
326
  ___
327
327
 
@@ -348,4 +348,4 @@ Create .stack property on a target object
348
348
 
349
349
  #### Defined in
350
350
 
351
- node_modules/@types/node/globals.d.ts:4
351
+ node_modules/@types/node/ts4.8/globals.d.ts:4
@@ -59,7 +59,7 @@
59
59
 
60
60
  #### Defined in
61
61
 
62
- [src/RawQuery.ts:22](https://github.com/breautek/storm/blob/4ac2f44/src/RawQuery.ts#L22)
62
+ [src/RawQuery.ts:22](https://github.com/breautek/storm/blob/306a47f/src/RawQuery.ts#L22)
63
63
 
64
64
  ## Methods
65
65
 
@@ -77,7 +77,7 @@
77
77
 
78
78
  #### Defined in
79
79
 
80
- [src/RawQuery.ts:27](https://github.com/breautek/storm/blob/4ac2f44/src/RawQuery.ts#L27)
80
+ [src/RawQuery.ts:27](https://github.com/breautek/storm/blob/306a47f/src/RawQuery.ts#L27)
81
81
 
82
82
  ___
83
83
 
@@ -101,7 +101,7 @@ ___
101
101
 
102
102
  #### Defined in
103
103
 
104
- [src/Query.ts:70](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L70)
104
+ [src/Query.ts:70](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L70)
105
105
 
106
106
  ___
107
107
 
@@ -121,7 +121,7 @@ parameters that was passed into the constructor.
121
121
 
122
122
  #### Defined in
123
123
 
124
- [src/Query.ts:29](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L29)
124
+ [src/Query.ts:29](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L29)
125
125
 
126
126
  ___
127
127
 
@@ -143,7 +143,7 @@ parameters that will be used when this query is ran.
143
143
 
144
144
  #### Defined in
145
145
 
146
- [src/Query.ts:38](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L38)
146
+ [src/Query.ts:38](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L38)
147
147
 
148
148
  ___
149
149
 
@@ -167,7 +167,7 @@ ___
167
167
 
168
168
  #### Defined in
169
169
 
170
- [src/Query.ts:44](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L44)
170
+ [src/Query.ts:44](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L44)
171
171
 
172
172
  ___
173
173
 
@@ -194,7 +194,7 @@ Override to augment/manipulate the returned result set.
194
194
 
195
195
  #### Defined in
196
196
 
197
- [src/Query.ts:65](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L65)
197
+ [src/Query.ts:65](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L65)
198
198
 
199
199
  ___
200
200
 
@@ -221,4 +221,4 @@ Can be used to set session variables or create temporary tables, etc.
221
221
 
222
222
  #### Defined in
223
223
 
224
- [src/Query.ts:55](https://github.com/breautek/storm/blob/4ac2f44/src/Query.ts#L55)
224
+ [src/Query.ts:55](https://github.com/breautek/storm/blob/306a47f/src/Query.ts#L55)