@breautek/storm 3.2.1 → 3.3.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 (73) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/docs/classes/Application.Application-1.md +47 -25
  3. package/docs/classes/BackendAuthenticationMiddleware.BackendAuthenticationMiddleware-1.md +2 -2
  4. package/docs/classes/CORSMiddleware.CORSMiddleware-1.md +6 -6
  5. package/docs/classes/ConfigLoader.ConfigLoader-1.md +1 -1
  6. package/docs/classes/Database.Database-1.md +12 -12
  7. package/docs/classes/DatabaseConnection.DatabaseConnection-1.md +19 -19
  8. package/docs/classes/DatabaseQueryError.DatabaseQueryError-1.md +8 -8
  9. package/docs/classes/DiskSpaceError.DiskSpaceError-1.md +8 -8
  10. package/docs/classes/DropTemporaryTableQuery.DropTemporaryTableQuery-1.md +8 -8
  11. package/docs/classes/DumpStream.DumpStream-1.md +1 -1
  12. package/docs/classes/DuplicateEntryError.DuplicateEntryError-1.md +8 -8
  13. package/docs/classes/EntityNotFoundError.EntityNotFoundError-1.md +8 -8
  14. package/docs/classes/ExpiredTokenError.ExpiredTokenError-1.md +8 -8
  15. package/docs/classes/Handler.Handler-1.md +34 -13
  16. package/docs/classes/InternalError.InternalError-1.md +8 -8
  17. package/docs/classes/InvalidConfigError.InvalidConfigError-1.md +8 -8
  18. package/docs/classes/InvalidCredentialsError.InvalidCredentialsError-1.md +8 -8
  19. package/docs/classes/InvalidValueError.InvalidValueError-1.md +8 -8
  20. package/docs/classes/JWTVerifyOptionsParser.JWTVerifyOptionsParser-1.md +2 -2
  21. package/docs/classes/ManagedDatabaseConnection.ManagedDatabaseConnection-1.md +19 -19
  22. package/docs/classes/Middleware.Middleware-1.md +3 -3
  23. package/docs/classes/MissingConfigError.MissingConfigError-1.md +8 -8
  24. package/docs/classes/MissingParameterError.MissingParameterError-1.md +8 -8
  25. package/docs/classes/MySQLConnection.MySQLConnection-1.md +20 -20
  26. package/docs/classes/MySQLDatabase.MySQLDatabase-1.md +13 -13
  27. package/docs/classes/Query.Query-1.md +8 -8
  28. package/docs/classes/RawQuery.RawQuery-1.md +8 -8
  29. package/docs/classes/Request.Request-1.md +18 -18
  30. package/docs/classes/Response.Response-1.md +11 -11
  31. package/docs/classes/ResponseData.ResponseData-1.md +7 -7
  32. package/docs/classes/ServiceProvider.ServiceProvider-1.md +15 -15
  33. package/docs/classes/ServiceResponse.ServiceResponse-1.md +4 -4
  34. package/docs/classes/StormError.StormError-1.md +8 -8
  35. package/docs/classes/TemporaryTableQuery.TemporaryTableQuery-1.md +8 -8
  36. package/docs/classes/Token.Token-1.md +2 -2
  37. package/docs/classes/TokenManager.TokenManager-1.md +4 -4
  38. package/docs/classes/UnauthorizedAccessError.UnauthorizedAccessError-1.md +8 -8
  39. package/docs/classes/private_CommitQuery.CommitQuery.md +8 -8
  40. package/docs/classes/private_RollbackQuery.RollbackQuery.md +8 -8
  41. package/docs/classes/private_StartTransactionQuery.StartTransactionQuery.md +8 -8
  42. package/docs/enums/ApplicationEvent.ApplicationEvent-1.md +1 -1
  43. package/docs/enums/ErrorCode.ErrorCode-1.md +9 -9
  44. package/docs/enums/ExitCode.ExitCode-1.md +2 -2
  45. package/docs/enums/HTTPMethod.HTTPMethod-1.md +4 -4
  46. package/docs/enums/JWTError.JWTError-1.md +2 -2
  47. package/docs/enums/StatusCode.StatusCode-1.md +48 -48
  48. package/docs/interfaces/DropTemporaryTableQuery.IDropTemporaryTableQueryInput.md +1 -1
  49. package/docs/interfaces/IConfig.IConfig-1.md +8 -8
  50. package/docs/interfaces/IDatabaseConfig.IDatabaseConfig-1.md +6 -6
  51. package/docs/interfaces/IDatabaseConnection.IDatabaseConnection-1.md +14 -14
  52. package/docs/interfaces/IFormData.IFormData-1.md +2 -2
  53. package/docs/interfaces/IHandler.IHandler-1.md +1 -1
  54. package/docs/interfaces/IInsertQueryResult.IInsertQueryResult-1.md +3 -3
  55. package/docs/interfaces/IJWTVerifyOptions.IJWTVerifyOptions-1.md +1 -1
  56. package/docs/interfaces/IRequestResponse.IRequestResponse-1.md +2 -2
  57. package/docs/interfaces/IUpdateQueryResult.IUpdateQueryResult-1.md +2 -2
  58. package/docs/interfaces/StormError.IErrorResponse.md +4 -4
  59. package/docs/interfaces/TemporaryTableQuery.ITemporaryTableQueryInput.md +2 -2
  60. package/docs/modules/DatabaseConnection.md +2 -2
  61. package/docs/modules/Handler.md +2 -2
  62. package/docs/modules/IDeleteQueryResult.md +1 -1
  63. package/docs/modules/Response.md +1 -1
  64. package/docs/modules/instance.md +2 -2
  65. package/lib/Application.d.ts +2 -0
  66. package/lib/Application.js +3 -0
  67. package/lib/Application.js.map +1 -1
  68. package/lib/Handler.d.ts +1 -0
  69. package/lib/Handler.js +2 -0
  70. package/lib/Handler.js.map +1 -1
  71. package/package.json +1 -1
  72. package/src/Application.ts +4 -0
  73. package/src/Handler.ts +4 -0
package/CHANGELOG.md CHANGED
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v3.3.0](https://github.com/breautek/storm/compare/v3.2.1...v3.3.0)
8
+
9
+ - feat: Allow accepting instances of Handlers for attachment [`621aeec`](https://github.com/breautek/storm/commit/621aeecc1929beee959d186467ef5f0ef326a56d)
10
+
7
11
  #### [v3.2.1](https://github.com/breautek/storm/compare/v3.2.0...v3.2.1)
8
12
 
13
+ > 22 November 2021
14
+
9
15
  - deproll [`8a65682`](https://github.com/breautek/storm/commit/8a656821743454af66978aae441d61242b8adb15)
10
16
  - replaced merge-change with my own fork that contains vulnerability patches [`72412c9`](https://github.com/breautek/storm/commit/72412c9d391e4728bbd3af10ed5108cb2373b64e)
11
17
 
@@ -48,6 +48,7 @@ Main entry point for the Application. Should be extended and have the abstract m
48
48
  - [\_onReady](Application.Application-1.md#_onready)
49
49
  - [addListener](Application.Application-1.md#addlistener)
50
50
  - [attachHandler](Application.Application-1.md#attachhandler)
51
+ - [attachHandlerInstance](Application.Application-1.md#attachhandlerinstance)
51
52
  - [close](Application.Application-1.md#close)
52
53
  - [emit](Application.Application-1.md#emit)
53
54
  - [eventNames](Application.Application-1.md#eventnames)
@@ -108,7 +109,7 @@ EventEmitter.constructor
108
109
 
109
110
  #### Defined in
110
111
 
111
- [src/Application.ts:64](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L64)
112
+ [src/Application.ts:64](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L64)
112
113
 
113
114
  ## Properties
114
115
 
@@ -192,7 +193,7 @@ Promise<void>
192
193
 
193
194
  #### Defined in
194
195
 
195
- [src/Application.ts:268](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L268)
196
+ [src/Application.ts:272](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L272)
196
197
 
197
198
  ___
198
199
 
@@ -212,7 +213,7 @@ ___
212
213
 
213
214
  #### Defined in
214
215
 
215
- [src/Application.ts:202](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L202)
216
+ [src/Application.ts:202](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L202)
216
217
 
217
218
  ___
218
219
 
@@ -226,7 +227,7 @@ ___
226
227
 
227
228
  #### Defined in
228
229
 
229
- [src/Application.ts:245](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L245)
230
+ [src/Application.ts:249](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L249)
230
231
 
231
232
  ___
232
233
 
@@ -240,7 +241,7 @@ ___
240
241
 
241
242
  #### Defined in
242
243
 
243
- [src/Application.ts:251](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L251)
244
+ [src/Application.ts:255](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L255)
244
245
 
245
246
  ___
246
247
 
@@ -262,7 +263,7 @@ Subclasses are expected to override this to configure their database setup, if t
262
263
 
263
264
  #### Defined in
264
265
 
265
- [src/Application.ts:377](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L377)
266
+ [src/Application.ts:381](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L381)
266
267
 
267
268
  ___
268
269
 
@@ -282,7 +283,7 @@ ___
282
283
 
283
284
  #### Defined in
284
285
 
285
- [src/Application.ts:165](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L165)
286
+ [src/Application.ts:165](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L165)
286
287
 
287
288
  ___
288
289
 
@@ -302,7 +303,7 @@ ___
302
303
 
303
304
  #### Defined in
304
305
 
305
- [src/Application.ts:161](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L161)
306
+ [src/Application.ts:161](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L161)
306
307
 
307
308
  ___
308
309
 
@@ -316,7 +317,7 @@ ___
316
317
 
317
318
  #### Defined in
318
319
 
319
- [src/Application.ts:381](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L381)
320
+ [src/Application.ts:385](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L385)
320
321
 
321
322
  ___
322
323
 
@@ -338,7 +339,7 @@ Invoked once the config has been loaded and ready to be used.
338
339
 
339
340
  #### Defined in
340
341
 
341
- [src/Application.ts:321](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L321)
342
+ [src/Application.ts:325](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L325)
342
343
 
343
344
  ___
344
345
 
@@ -354,7 +355,7 @@ Invoked when the application is considered ready for operation.
354
355
 
355
356
  #### Defined in
356
357
 
357
- [src/Application.ts:386](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L386)
358
+ [src/Application.ts:390](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L390)
358
359
 
359
360
  ___
360
361
 
@@ -404,7 +405,28 @@ ___
404
405
 
405
406
  #### Defined in
406
407
 
407
- [src/Application.ts:221](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L221)
408
+ [src/Application.ts:221](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L221)
409
+
410
+ ___
411
+
412
+ ### attachHandlerInstance
413
+
414
+ ▸ **attachHandlerInstance**(`path`, `handler`): `void`
415
+
416
+ #### Parameters
417
+
418
+ | Name | Type |
419
+ | :------ | :------ |
420
+ | `path` | `string` |
421
+ | `handler` | [`Handler`](Handler.Handler-1.md)<[`Application`](Application.Application-1.md)<[`IConfig`](../interfaces/IConfig.IConfig-1.md), [`IAuthTokenData`](../interfaces/IAuthTokenData.IAuthTokenData-1.md), `any`, `any`\>, `any`, `any`, `any`, `any`, `any`, `any`, `any`, `any`\> |
422
+
423
+ #### Returns
424
+
425
+ `void`
426
+
427
+ #### Defined in
428
+
429
+ [src/Application.ts:226](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L226)
408
430
 
409
431
  ___
410
432
 
@@ -418,7 +440,7 @@ ___
418
440
 
419
441
  #### Defined in
420
442
 
421
- [src/Application.ts:241](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L241)
443
+ [src/Application.ts:245](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L245)
422
444
 
423
445
  ___
424
446
 
@@ -535,7 +557,7 @@ command line arguments
535
557
 
536
558
  #### Defined in
537
559
 
538
- [src/Application.ts:348](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L348)
560
+ [src/Application.ts:352](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L352)
539
561
 
540
562
  ___
541
563
 
@@ -551,7 +573,7 @@ the config object.
551
573
 
552
574
  #### Defined in
553
575
 
554
- [src/Application.ts:305](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L305)
576
+ [src/Application.ts:309](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L309)
555
577
 
556
578
  ___
557
579
 
@@ -567,7 +589,7 @@ the database pool. This will need to be casted based on your preferred database
567
589
 
568
590
  #### Defined in
569
591
 
570
- [src/Application.ts:341](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L341)
592
+ [src/Application.ts:345](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L345)
571
593
 
572
594
  ___
573
595
 
@@ -581,7 +603,7 @@ ___
581
603
 
582
604
  #### Defined in
583
605
 
584
- [src/Application.ts:169](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L169)
606
+ [src/Application.ts:169](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L169)
585
607
 
586
608
  ___
587
609
 
@@ -620,7 +642,7 @@ the application name
620
642
 
621
643
  #### Defined in
622
644
 
623
- [src/Application.ts:294](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L294)
645
+ [src/Application.ts:298](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L298)
624
646
 
625
647
  ___
626
648
 
@@ -634,7 +656,7 @@ ___
634
656
 
635
657
  #### Defined in
636
658
 
637
- [src/Application.ts:173](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L173)
659
+ [src/Application.ts:173](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L173)
638
660
 
639
661
  ___
640
662
 
@@ -648,7 +670,7 @@ ___
648
670
 
649
671
  #### Defined in
650
672
 
651
- [src/Application.ts:204](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L204)
673
+ [src/Application.ts:204](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L204)
652
674
 
653
675
  ___
654
676
 
@@ -664,7 +686,7 @@ The maximum size limit for incoming requests that this service needs to handle.
664
686
 
665
687
  #### Defined in
666
688
 
667
- [src/Application.ts:211](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L211)
689
+ [src/Application.ts:211](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L211)
668
690
 
669
691
  ___
670
692
 
@@ -680,7 +702,7 @@ the token manager
680
702
 
681
703
  #### Defined in
682
704
 
683
- [src/Application.ts:334](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L334)
705
+ [src/Application.ts:338](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L338)
684
706
 
685
707
  ___
686
708
 
@@ -764,7 +786,7 @@ ___
764
786
 
765
787
  #### Defined in
766
788
 
767
- [src/Application.ts:274](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L274)
789
+ [src/Application.ts:278](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L278)
768
790
 
769
791
  ___
770
792
 
@@ -1221,7 +1243,7 @@ Sets the TokenManager to be used for authentication.
1221
1243
 
1222
1244
  #### Defined in
1223
1245
 
1224
- [src/Application.ts:327](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L327)
1246
+ [src/Application.ts:331](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L331)
1225
1247
 
1226
1248
  ___
1227
1249
 
@@ -1237,7 +1259,7 @@ true if the Application should bind to an IP address
1237
1259
 
1238
1260
  #### Defined in
1239
1261
 
1240
- [src/Application.ts:312](https://github.com/breautek/storm/blob/72412c9/src/Application.ts#L312)
1262
+ [src/Application.ts:316](https://github.com/breautek/storm/blob/621aeec/src/Application.ts#L316)
1241
1263
 
1242
1264
  ___
1243
1265
 
@@ -27,7 +27,7 @@ for their specific use cases.
27
27
 
28
28
  #### Defined in
29
29
 
30
- [src/BackendAuthenticationMiddleware.ts:35](https://github.com/breautek/storm/blob/72412c9/src/BackendAuthenticationMiddleware.ts#L35)
30
+ [src/BackendAuthenticationMiddleware.ts:35](https://github.com/breautek/storm/blob/621aeec/src/BackendAuthenticationMiddleware.ts#L35)
31
31
 
32
32
  ## Methods
33
33
 
@@ -48,4 +48,4 @@ for their specific use cases.
48
48
 
49
49
  #### Defined in
50
50
 
51
- [src/BackendAuthenticationMiddleware.ts:46](https://github.com/breautek/storm/blob/72412c9/src/BackendAuthenticationMiddleware.ts#L46)
51
+ [src/BackendAuthenticationMiddleware.ts:46](https://github.com/breautek/storm/blob/621aeec/src/BackendAuthenticationMiddleware.ts#L46)
@@ -48,7 +48,7 @@ communicate with CORS enabled clients.
48
48
 
49
49
  #### Defined in
50
50
 
51
- [src/CORSMiddleware.ts:39](https://github.com/breautek/storm/blob/72412c9/src/CORSMiddleware.ts#L39)
51
+ [src/CORSMiddleware.ts:39](https://github.com/breautek/storm/blob/621aeec/src/CORSMiddleware.ts#L39)
52
52
 
53
53
  ## Methods
54
54
 
@@ -73,7 +73,7 @@ communicate with CORS enabled clients.
73
73
 
74
74
  #### Defined in
75
75
 
76
- [src/CORSMiddleware.ts:75](https://github.com/breautek/storm/blob/72412c9/src/CORSMiddleware.ts#L75)
76
+ [src/CORSMiddleware.ts:75](https://github.com/breautek/storm/blob/621aeec/src/CORSMiddleware.ts#L75)
77
77
 
78
78
  ___
79
79
 
@@ -98,7 +98,7 @@ ___
98
98
 
99
99
  #### Defined in
100
100
 
101
- [src/Middleware.ts:27](https://github.com/breautek/storm/blob/72412c9/src/Middleware.ts#L27)
101
+ [src/Middleware.ts:27](https://github.com/breautek/storm/blob/621aeec/src/Middleware.ts#L27)
102
102
 
103
103
  ___
104
104
 
@@ -112,7 +112,7 @@ ___
112
112
 
113
113
  #### Defined in
114
114
 
115
- [src/CORSMiddleware.ts:54](https://github.com/breautek/storm/blob/72412c9/src/CORSMiddleware.ts#L54)
115
+ [src/CORSMiddleware.ts:54](https://github.com/breautek/storm/blob/621aeec/src/CORSMiddleware.ts#L54)
116
116
 
117
117
  ___
118
118
 
@@ -126,7 +126,7 @@ ___
126
126
 
127
127
  #### Defined in
128
128
 
129
- [src/CORSMiddleware.ts:64](https://github.com/breautek/storm/blob/72412c9/src/CORSMiddleware.ts#L64)
129
+ [src/CORSMiddleware.ts:64](https://github.com/breautek/storm/blob/621aeec/src/CORSMiddleware.ts#L64)
130
130
 
131
131
  ___
132
132
 
@@ -142,4 +142,4 @@ Sets the allowed origin. By default,
142
142
 
143
143
  #### Defined in
144
144
 
145
- [src/CORSMiddleware.ts:50](https://github.com/breautek/storm/blob/72412c9/src/CORSMiddleware.ts#L50)
145
+ [src/CORSMiddleware.ts:50](https://github.com/breautek/storm/blob/621aeec/src/CORSMiddleware.ts#L50)
@@ -28,4 +28,4 @@
28
28
 
29
29
  #### Defined in
30
30
 
31
- [src/ConfigLoader.ts:34](https://github.com/breautek/storm/blob/72412c9/src/ConfigLoader.ts#L34)
31
+ [src/ConfigLoader.ts:34](https://github.com/breautek/storm/blob/621aeec/src/ConfigLoader.ts#L34)
@@ -52,7 +52,7 @@
52
52
 
53
53
  #### Defined in
54
54
 
55
- [src/Database.ts:28](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L28)
55
+ [src/Database.ts:28](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L28)
56
56
 
57
57
  ## Methods
58
58
 
@@ -73,7 +73,7 @@
73
73
 
74
74
  #### Defined in
75
75
 
76
- [src/Database.ts:83](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L83)
76
+ [src/Database.ts:83](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L83)
77
77
 
78
78
  ___
79
79
 
@@ -87,7 +87,7 @@ ___
87
87
 
88
88
  #### Defined in
89
89
 
90
- [src/Database.ts:82](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L82)
90
+ [src/Database.ts:82](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L82)
91
91
 
92
92
  ___
93
93
 
@@ -108,7 +108,7 @@ ___
108
108
 
109
109
  #### Defined in
110
110
 
111
- [src/Database.ts:85](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L85)
111
+ [src/Database.ts:85](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L85)
112
112
 
113
113
  ___
114
114
 
@@ -128,7 +128,7 @@ ___
128
128
 
129
129
  #### Defined in
130
130
 
131
- [src/Database.ts:84](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L84)
131
+ [src/Database.ts:84](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L84)
132
132
 
133
133
  ___
134
134
 
@@ -148,7 +148,7 @@ ___
148
148
 
149
149
  #### Defined in
150
150
 
151
- [src/Database.ts:32](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L32)
151
+ [src/Database.ts:32](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L32)
152
152
 
153
153
  ___
154
154
 
@@ -169,7 +169,7 @@ ___
169
169
 
170
170
  #### Defined in
171
171
 
172
- [src/Database.ts:46](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L46)
172
+ [src/Database.ts:46](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L46)
173
173
 
174
174
  ___
175
175
 
@@ -183,7 +183,7 @@ ___
183
183
 
184
184
  #### Defined in
185
185
 
186
- [src/Database.ts:78](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L78)
186
+ [src/Database.ts:78](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L78)
187
187
 
188
188
  ___
189
189
 
@@ -203,7 +203,7 @@ ___
203
203
 
204
204
  #### Defined in
205
205
 
206
- [src/Database.ts:86](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L86)
206
+ [src/Database.ts:86](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L86)
207
207
 
208
208
  ___
209
209
 
@@ -224,7 +224,7 @@ ___
224
224
 
225
225
  #### Defined in
226
226
 
227
- [src/Database.ts:65](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L65)
227
+ [src/Database.ts:65](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L65)
228
228
 
229
229
  ___
230
230
 
@@ -238,7 +238,7 @@ ___
238
238
 
239
239
  #### Defined in
240
240
 
241
- [src/Database.ts:41](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L41)
241
+ [src/Database.ts:41](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L41)
242
242
 
243
243
  ___
244
244
 
@@ -258,4 +258,4 @@ ___
258
258
 
259
259
  #### Defined in
260
260
 
261
- [src/Database.ts:55](https://github.com/breautek/storm/blob/72412c9/src/Database.ts#L55)
261
+ [src/Database.ts:55](https://github.com/breautek/storm/blob/621aeec/src/Database.ts#L55)
@@ -75,7 +75,7 @@ Do not call `new Database` directly. Use `Database.getConnection` to create a `D
75
75
 
76
76
  #### Defined in
77
77
 
78
- [src/DatabaseConnection.ts:44](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L44)
78
+ [src/DatabaseConnection.ts:44](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L44)
79
79
 
80
80
  ## Methods
81
81
 
@@ -102,7 +102,7 @@ Promise<void>
102
102
 
103
103
  #### Defined in
104
104
 
105
- [src/DatabaseConnection.ts:239](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L239)
105
+ [src/DatabaseConnection.ts:239](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L239)
106
106
 
107
107
  ___
108
108
 
@@ -135,7 +135,7 @@ Promise
135
135
 
136
136
  #### Defined in
137
137
 
138
- [src/DatabaseConnection.ts:250](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L250)
138
+ [src/DatabaseConnection.ts:250](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L250)
139
139
 
140
140
  ___
141
141
 
@@ -162,7 +162,7 @@ but returns a `Readable` stream instead.
162
162
 
163
163
  #### Defined in
164
164
 
165
- [src/DatabaseConnection.ts:262](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L262)
165
+ [src/DatabaseConnection.ts:262](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L262)
166
166
 
167
167
  ___
168
168
 
@@ -194,7 +194,7 @@ Promise<void>
194
194
 
195
195
  #### Defined in
196
196
 
197
- [src/DatabaseConnection.ts:169](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L169)
197
+ [src/DatabaseConnection.ts:169](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L169)
198
198
 
199
199
  ___
200
200
 
@@ -220,7 +220,7 @@ Promise<void>
220
220
 
221
221
  #### Defined in
222
222
 
223
- [src/DatabaseConnection.ts:220](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L220)
223
+ [src/DatabaseConnection.ts:220](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L220)
224
224
 
225
225
  ___
226
226
 
@@ -248,7 +248,7 @@ Promise<void>
248
248
 
249
249
  #### Defined in
250
250
 
251
- [src/DatabaseConnection.ts:211](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L211)
251
+ [src/DatabaseConnection.ts:211](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L211)
252
252
 
253
253
  ___
254
254
 
@@ -270,7 +270,7 @@ any
270
270
 
271
271
  #### Defined in
272
272
 
273
- [src/DatabaseConnection.ts:91](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L91)
273
+ [src/DatabaseConnection.ts:91](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L91)
274
274
 
275
275
  ___
276
276
 
@@ -293,7 +293,7 @@ string - A stacktrace
293
293
 
294
294
  #### Defined in
295
295
 
296
- [src/DatabaseConnection.ts:73](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L73)
296
+ [src/DatabaseConnection.ts:73](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L73)
297
297
 
298
298
  ___
299
299
 
@@ -315,7 +315,7 @@ number in milliseconds
315
315
 
316
316
  #### Defined in
317
317
 
318
- [src/DatabaseConnection.ts:121](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L121)
318
+ [src/DatabaseConnection.ts:121](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L121)
319
319
 
320
320
  ___
321
321
 
@@ -335,7 +335,7 @@ Returns true if the connection has been closed.
335
335
 
336
336
  #### Defined in
337
337
 
338
- [src/DatabaseConnection.ts:182](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L182)
338
+ [src/DatabaseConnection.ts:182](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L182)
339
339
 
340
340
  ___
341
341
 
@@ -358,7 +358,7 @@ boolean
358
358
 
359
359
  #### Defined in
360
360
 
361
- [src/DatabaseConnection.ts:100](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L100)
361
+ [src/DatabaseConnection.ts:100](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L100)
362
362
 
363
363
  ___
364
364
 
@@ -382,7 +382,7 @@ boolean
382
382
 
383
383
  #### Defined in
384
384
 
385
- [src/DatabaseConnection.ts:201](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L201)
385
+ [src/DatabaseConnection.ts:201](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L201)
386
386
 
387
387
  ___
388
388
 
@@ -418,7 +418,7 @@ Promise<TQueryResult>
418
418
 
419
419
  #### Defined in
420
420
 
421
- [src/DatabaseConnection.ts:132](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L132)
421
+ [src/DatabaseConnection.ts:132](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L132)
422
422
 
423
423
  ___
424
424
 
@@ -444,7 +444,7 @@ Promise<void>
444
444
 
445
445
  #### Defined in
446
446
 
447
- [src/DatabaseConnection.ts:229](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L229)
447
+ [src/DatabaseConnection.ts:229](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L229)
448
448
 
449
449
  ___
450
450
 
@@ -468,7 +468,7 @@ ___
468
468
 
469
469
  #### Defined in
470
470
 
471
- [src/DatabaseConnection.ts:64](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L64)
471
+ [src/DatabaseConnection.ts:64](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L64)
472
472
 
473
473
  ___
474
474
 
@@ -494,7 +494,7 @@ Sets the timeout of this connectino
494
494
 
495
495
  #### Defined in
496
496
 
497
- [src/DatabaseConnection.ts:109](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L109)
497
+ [src/DatabaseConnection.ts:109](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L109)
498
498
 
499
499
  ___
500
500
 
@@ -520,7 +520,7 @@ Promise<void>
520
520
 
521
521
  #### Defined in
522
522
 
523
- [src/DatabaseConnection.ts:193](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L193)
523
+ [src/DatabaseConnection.ts:193](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L193)
524
524
 
525
525
  ___
526
526
 
@@ -547,4 +547,4 @@ Readable
547
547
 
548
548
  #### Defined in
549
549
 
550
- [src/DatabaseConnection.ts:152](https://github.com/breautek/storm/blob/72412c9/src/DatabaseConnection.ts#L152)
550
+ [src/DatabaseConnection.ts:152](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L152)
@@ -54,7 +54,7 @@
54
54
 
55
55
  #### Defined in
56
56
 
57
- [src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/72412c9/src/DatabaseQueryError.ts#L25)
57
+ [src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L25)
58
58
 
59
59
  ## Properties
60
60
 
@@ -161,7 +161,7 @@ node_modules/@types/node/globals.d.ts:13
161
161
 
162
162
  #### Defined in
163
163
 
164
- [src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/72412c9/src/DatabaseQueryError.ts#L36)
164
+ [src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L36)
165
165
 
166
166
  ___
167
167
 
@@ -179,7 +179,7 @@ ___
179
179
 
180
180
  #### Defined in
181
181
 
182
- [src/StormError.ts:70](https://github.com/breautek/storm/blob/72412c9/src/StormError.ts#L70)
182
+ [src/StormError.ts:70](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L70)
183
183
 
184
184
  ___
185
185
 
@@ -197,7 +197,7 @@ ___
197
197
 
198
198
  #### Defined in
199
199
 
200
- [src/StormError.ts:79](https://github.com/breautek/storm/blob/72412c9/src/StormError.ts#L79)
200
+ [src/StormError.ts:79](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L79)
201
201
 
202
202
  ___
203
203
 
@@ -215,7 +215,7 @@ ___
215
215
 
216
216
  #### Defined in
217
217
 
218
- [src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/72412c9/src/DatabaseQueryError.ts#L40)
218
+ [src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L40)
219
219
 
220
220
  ___
221
221
 
@@ -233,7 +233,7 @@ ___
233
233
 
234
234
  #### Defined in
235
235
 
236
- [src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/72412c9/src/DatabaseQueryError.ts#L32)
236
+ [src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L32)
237
237
 
238
238
  ___
239
239
 
@@ -259,7 +259,7 @@ They are kept secret from the client.
259
259
 
260
260
  #### Defined in
261
261
 
262
- [src/StormError.ts:62](https://github.com/breautek/storm/blob/72412c9/src/StormError.ts#L62)
262
+ [src/StormError.ts:62](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L62)
263
263
 
264
264
  ___
265
265
 
@@ -279,7 +279,7 @@ Sends details to the client.
279
279
 
280
280
  #### Defined in
281
281
 
282
- [src/StormError.ts:54](https://github.com/breautek/storm/blob/72412c9/src/StormError.ts#L54)
282
+ [src/StormError.ts:54](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L54)
283
283
 
284
284
  ___
285
285