@breautek/storm 3.2.0 → 3.4.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.
- package/CHANGELOG.md +25 -0
- package/docs/README.md +1 -0
- package/docs/classes/Application.Application-1.md +47 -25
- package/docs/classes/BackendAuthenticationMiddleware.BackendAuthenticationMiddleware-1.md +2 -2
- package/docs/classes/CORSMiddleware.CORSMiddleware-1.md +6 -6
- package/docs/classes/ConfigLoader.ConfigLoader-1.md +1 -1
- package/docs/classes/Database.Database-1.md +12 -12
- package/docs/classes/DatabaseConnection.DatabaseConnection-1.md +19 -19
- package/docs/classes/DatabaseQueryError.DatabaseQueryError-1.md +8 -8
- package/docs/classes/DiskSpaceError.DiskSpaceError-1.md +8 -8
- package/docs/classes/DropTemporaryTableQuery.DropTemporaryTableQuery-1.md +8 -8
- package/docs/classes/DumpStream.DumpStream-1.md +1 -1
- package/docs/classes/DuplicateEntryError.DuplicateEntryError-1.md +8 -8
- package/docs/classes/EntityNotFoundError.EntityNotFoundError-1.md +8 -8
- package/docs/classes/ExpiredTokenError.ExpiredTokenError-1.md +8 -8
- package/docs/classes/Handler.Handler-1.md +34 -13
- package/docs/classes/InternalError.InternalError-1.md +8 -8
- package/docs/classes/InvalidConfigError.InvalidConfigError-1.md +8 -8
- package/docs/classes/InvalidCredentialsError.InvalidCredentialsError-1.md +8 -8
- package/docs/classes/InvalidValueError.InvalidValueError-1.md +8 -8
- package/docs/classes/JWTVerifyOptionsParser.JWTVerifyOptionsParser-1.md +2 -2
- package/docs/classes/ManagedDatabaseConnection.ManagedDatabaseConnection-1.md +19 -19
- package/docs/classes/Middleware.Middleware-1.md +3 -3
- package/docs/classes/MissingConfigError.MissingConfigError-1.md +8 -8
- package/docs/classes/MissingParameterError.MissingParameterError-1.md +8 -8
- package/docs/classes/MySQLConnection.MySQLConnection-1.md +20 -20
- package/docs/classes/MySQLDatabase.MySQLDatabase-1.md +13 -13
- package/docs/classes/Query.Query-1.md +10 -8
- package/docs/classes/RawQuery.RawQuery-1.md +8 -8
- package/docs/classes/Request.Request-1.md +18 -18
- package/docs/classes/Response.Response-1.md +11 -11
- package/docs/classes/ResponseData.ResponseData-1.md +7 -7
- package/docs/classes/ServiceProvider.ServiceProvider-1.md +15 -15
- package/docs/classes/ServiceResponse.ServiceResponse-1.md +4 -4
- package/docs/classes/SetSessionVariableQuery.SetSessionVariableQuery-1.md +197 -0
- package/docs/classes/StormError.StormError-1.md +8 -8
- package/docs/classes/TemporaryTableQuery.TemporaryTableQuery-1.md +8 -8
- package/docs/classes/Token.Token-1.md +2 -2
- package/docs/classes/TokenManager.TokenManager-1.md +4 -4
- package/docs/classes/UnauthorizedAccessError.UnauthorizedAccessError-1.md +8 -8
- package/docs/classes/private_CommitQuery.CommitQuery.md +8 -8
- package/docs/classes/private_RollbackQuery.RollbackQuery.md +8 -8
- package/docs/classes/private_StartTransactionQuery.StartTransactionQuery.md +8 -8
- package/docs/enums/ApplicationEvent.ApplicationEvent-1.md +1 -1
- package/docs/enums/ErrorCode.ErrorCode-1.md +9 -9
- package/docs/enums/ExitCode.ExitCode-1.md +2 -2
- package/docs/enums/HTTPMethod.HTTPMethod-1.md +4 -4
- package/docs/enums/JWTError.JWTError-1.md +2 -2
- package/docs/enums/StatusCode.StatusCode-1.md +48 -48
- package/docs/interfaces/DropTemporaryTableQuery.IDropTemporaryTableQueryInput.md +1 -1
- package/docs/interfaces/IConfig.IConfig-1.md +8 -8
- package/docs/interfaces/IDatabaseConfig.IDatabaseConfig-1.md +6 -6
- package/docs/interfaces/IDatabaseConnection.IDatabaseConnection-1.md +14 -14
- package/docs/interfaces/IFormData.IFormData-1.md +2 -2
- package/docs/interfaces/IHandler.IHandler-1.md +1 -1
- package/docs/interfaces/IInsertQueryResult.IInsertQueryResult-1.md +3 -3
- package/docs/interfaces/IJWTVerifyOptions.IJWTVerifyOptions-1.md +1 -1
- package/docs/interfaces/IRequestResponse.IRequestResponse-1.md +2 -2
- package/docs/interfaces/IUpdateQueryResult.IUpdateQueryResult-1.md +2 -2
- package/docs/interfaces/SetSessionVariableQuery.ISetSessionVariableQueryInput.md +32 -0
- package/docs/interfaces/StormError.IErrorResponse.md +4 -4
- package/docs/interfaces/TemporaryTableQuery.ITemporaryTableQueryInput.md +2 -2
- package/docs/modules/DatabaseConnection.md +2 -2
- package/docs/modules/Handler.md +2 -2
- package/docs/modules/IDeleteQueryResult.md +1 -1
- package/docs/modules/Response.md +1 -1
- package/docs/modules/SetSessionVariableQuery.md +13 -0
- package/docs/modules/api.md +14 -0
- package/docs/modules/instance.md +2 -2
- package/lib/Application.d.ts +2 -0
- package/lib/Application.js +3 -0
- package/lib/Application.js.map +1 -1
- package/lib/ConfigLoader.js +1 -1
- package/lib/ConfigLoader.js.map +1 -1
- package/lib/Handler.d.ts +1 -0
- package/lib/Handler.js +2 -0
- package/lib/Handler.js.map +1 -1
- package/lib/SetSessionVariableQuery.d.ts +10 -0
- package/lib/SetSessionVariableQuery.js +20 -0
- package/lib/SetSessionVariableQuery.js.map +1 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.js +3 -1
- package/lib/api.js.map +1 -1
- package/package.json +20 -20
- package/src/Application.ts +4 -0
- package/src/ConfigLoader.ts +1 -1
- package/src/Handler.ts +4 -0
- package/src/SetSessionVariableQuery.ts +29 -0
- package/src/api.ts +1 -0
- package/src/defs/merge-change.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,33 @@ 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.4.0](https://github.com/breautek/storm/compare/v3.3.1...v3.4.0)
|
|
8
|
+
|
|
9
|
+
- feat: SetSessionVariableQuery [`6ea3887`](https://github.com/breautek/storm/commit/6ea388780032fb1b785859d82b1090ac157eb7d8)
|
|
10
|
+
|
|
11
|
+
#### [v3.3.1](https://github.com/breautek/storm/compare/v3.3.0...v3.3.1)
|
|
12
|
+
|
|
13
|
+
> 7 January 2022
|
|
14
|
+
|
|
15
|
+
- deproll [`8c3a317`](https://github.com/breautek/storm/commit/8c3a3171d49f421b34d3c0d3660505fab0a7d136)
|
|
16
|
+
|
|
17
|
+
#### [v3.3.0](https://github.com/breautek/storm/compare/v3.2.1...v3.3.0)
|
|
18
|
+
|
|
19
|
+
> 23 November 2021
|
|
20
|
+
|
|
21
|
+
- feat: Allow accepting instances of Handlers for attachment [`621aeec`](https://github.com/breautek/storm/commit/621aeecc1929beee959d186467ef5f0ef326a56d)
|
|
22
|
+
|
|
23
|
+
#### [v3.2.1](https://github.com/breautek/storm/compare/v3.2.0...v3.2.1)
|
|
24
|
+
|
|
25
|
+
> 22 November 2021
|
|
26
|
+
|
|
27
|
+
- deproll [`8a65682`](https://github.com/breautek/storm/commit/8a656821743454af66978aae441d61242b8adb15)
|
|
28
|
+
- replaced merge-change with my own fork that contains vulnerability patches [`72412c9`](https://github.com/breautek/storm/commit/72412c9d391e4728bbd3af10ed5108cb2373b64e)
|
|
29
|
+
|
|
7
30
|
#### [v3.2.0](https://github.com/breautek/storm/compare/v3.1.2...v3.2.0)
|
|
8
31
|
|
|
32
|
+
> 3 October 2021
|
|
33
|
+
|
|
9
34
|
- deproll [`477d756`](https://github.com/breautek/storm/commit/477d7569db92758cec31c8a80a6ae53c5198d33a)
|
|
10
35
|
- breaking: Added _destroy abstract api to Database, intended for destroying connection pools [`a5c8a97`](https://github.com/breautek/storm/commit/a5c8a9708bc469a7191eb06d7a68289b1372543a)
|
|
11
36
|
|
package/docs/README.md
CHANGED
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
- [ResponseData](modules/ResponseData.md)
|
|
56
56
|
- [ServiceProvider](modules/ServiceProvider.md)
|
|
57
57
|
- [ServiceResponse](modules/ServiceResponse.md)
|
|
58
|
+
- [SetSessionVariableQuery](modules/SetSessionVariableQuery.md)
|
|
58
59
|
- [StatusCode](modules/StatusCode.md)
|
|
59
60
|
- [StormError](modules/StormError.md)
|
|
60
61
|
- [TemporaryTableQuery](modules/TemporaryTableQuery.md)
|
|
@@ -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/
|
|
112
|
+
[src/Application.ts:64](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
196
|
+
[src/Application.ts:272](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
216
|
+
[src/Application.ts:202](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
230
|
+
[src/Application.ts:249](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
244
|
+
[src/Application.ts:255](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
266
|
+
[src/Application.ts:381](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
286
|
+
[src/Application.ts:165](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
306
|
+
[src/Application.ts:161](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
320
|
+
[src/Application.ts:385](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
342
|
+
[src/Application.ts:325](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
358
|
+
[src/Application.ts:390](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
408
|
+
[src/Application.ts:221](https://github.com/breautek/storm/blob/6ea3887/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/6ea3887/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:
|
|
443
|
+
[src/Application.ts:245](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
560
|
+
[src/Application.ts:352](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
576
|
+
[src/Application.ts:309](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
592
|
+
[src/Application.ts:345](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
606
|
+
[src/Application.ts:169](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
645
|
+
[src/Application.ts:298](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
659
|
+
[src/Application.ts:173](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
673
|
+
[src/Application.ts:204](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
689
|
+
[src/Application.ts:211](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
705
|
+
[src/Application.ts:338](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
789
|
+
[src/Application.ts:278](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
1246
|
+
[src/Application.ts:331](https://github.com/breautek/storm/blob/6ea3887/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:
|
|
1262
|
+
[src/Application.ts:316](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
30
|
+
[src/BackendAuthenticationMiddleware.ts:35](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
51
|
+
[src/BackendAuthenticationMiddleware.ts:46](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
51
|
+
[src/CORSMiddleware.ts:39](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
76
|
+
[src/CORSMiddleware.ts:75](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
101
|
+
[src/Middleware.ts:27](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
115
|
+
[src/CORSMiddleware.ts:54](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
129
|
+
[src/CORSMiddleware.ts:64](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
145
|
+
[src/CORSMiddleware.ts:50](https://github.com/breautek/storm/blob/6ea3887/src/CORSMiddleware.ts#L50)
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
|
|
53
53
|
#### Defined in
|
|
54
54
|
|
|
55
|
-
[src/Database.ts:28](https://github.com/breautek/storm/blob/
|
|
55
|
+
[src/Database.ts:28](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
76
|
+
[src/Database.ts:83](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
90
|
+
[src/Database.ts:82](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
111
|
+
[src/Database.ts:85](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
131
|
+
[src/Database.ts:84](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
151
|
+
[src/Database.ts:32](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
172
|
+
[src/Database.ts:46](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
186
|
+
[src/Database.ts:78](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
206
|
+
[src/Database.ts:86](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
227
|
+
[src/Database.ts:65](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
241
|
+
[src/Database.ts:41](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
261
|
+
[src/Database.ts:55](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
78
|
+
[src/DatabaseConnection.ts:44](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
105
|
+
[src/DatabaseConnection.ts:239](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
138
|
+
[src/DatabaseConnection.ts:250](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
165
|
+
[src/DatabaseConnection.ts:262](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
197
|
+
[src/DatabaseConnection.ts:169](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
223
|
+
[src/DatabaseConnection.ts:220](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
251
|
+
[src/DatabaseConnection.ts:211](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
273
|
+
[src/DatabaseConnection.ts:91](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
296
|
+
[src/DatabaseConnection.ts:73](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
318
|
+
[src/DatabaseConnection.ts:121](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
338
|
+
[src/DatabaseConnection.ts:182](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
361
|
+
[src/DatabaseConnection.ts:100](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
385
|
+
[src/DatabaseConnection.ts:201](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
421
|
+
[src/DatabaseConnection.ts:132](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
447
|
+
[src/DatabaseConnection.ts:229](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
471
|
+
[src/DatabaseConnection.ts:64](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
497
|
+
[src/DatabaseConnection.ts:109](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
523
|
+
[src/DatabaseConnection.ts:193](https://github.com/breautek/storm/blob/6ea3887/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/
|
|
550
|
+
[src/DatabaseConnection.ts:152](https://github.com/breautek/storm/blob/6ea3887/src/DatabaseConnection.ts#L152)
|