@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
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
|
|
67
67
|
#### Defined in
|
|
68
68
|
|
|
69
|
-
[src/InvalidConfigError.ts:30](https://github.com/breautek/storm/blob/
|
|
69
|
+
[src/InvalidConfigError.ts:30](https://github.com/breautek/storm/blob/6ea3887/src/InvalidConfigError.ts#L30)
|
|
70
70
|
|
|
71
71
|
## Properties
|
|
72
72
|
|
|
@@ -173,7 +173,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
173
173
|
|
|
174
174
|
#### Defined in
|
|
175
175
|
|
|
176
|
-
[src/InvalidConfigError.ts:42](https://github.com/breautek/storm/blob/
|
|
176
|
+
[src/InvalidConfigError.ts:42](https://github.com/breautek/storm/blob/6ea3887/src/InvalidConfigError.ts#L42)
|
|
177
177
|
|
|
178
178
|
___
|
|
179
179
|
|
|
@@ -191,7 +191,7 @@ ___
|
|
|
191
191
|
|
|
192
192
|
#### Defined in
|
|
193
193
|
|
|
194
|
-
[src/StormError.ts:70](https://github.com/breautek/storm/blob/
|
|
194
|
+
[src/StormError.ts:70](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L70)
|
|
195
195
|
|
|
196
196
|
___
|
|
197
197
|
|
|
@@ -209,7 +209,7 @@ ___
|
|
|
209
209
|
|
|
210
210
|
#### Defined in
|
|
211
211
|
|
|
212
|
-
[src/InvalidConfigError.ts:50](https://github.com/breautek/storm/blob/
|
|
212
|
+
[src/InvalidConfigError.ts:50](https://github.com/breautek/storm/blob/6ea3887/src/InvalidConfigError.ts#L50)
|
|
213
213
|
|
|
214
214
|
___
|
|
215
215
|
|
|
@@ -227,7 +227,7 @@ ___
|
|
|
227
227
|
|
|
228
228
|
#### Defined in
|
|
229
229
|
|
|
230
|
-
[src/InvalidConfigError.ts:46](https://github.com/breautek/storm/blob/
|
|
230
|
+
[src/InvalidConfigError.ts:46](https://github.com/breautek/storm/blob/6ea3887/src/InvalidConfigError.ts#L46)
|
|
231
231
|
|
|
232
232
|
___
|
|
233
233
|
|
|
@@ -245,7 +245,7 @@ ___
|
|
|
245
245
|
|
|
246
246
|
#### Defined in
|
|
247
247
|
|
|
248
|
-
[src/InvalidConfigError.ts:37](https://github.com/breautek/storm/blob/
|
|
248
|
+
[src/InvalidConfigError.ts:37](https://github.com/breautek/storm/blob/6ea3887/src/InvalidConfigError.ts#L37)
|
|
249
249
|
|
|
250
250
|
___
|
|
251
251
|
|
|
@@ -266,7 +266,7 @@ They are kept secret from the client.
|
|
|
266
266
|
|
|
267
267
|
#### Defined in
|
|
268
268
|
|
|
269
|
-
[src/StormError.ts:62](https://github.com/breautek/storm/blob/
|
|
269
|
+
[src/StormError.ts:62](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L62)
|
|
270
270
|
|
|
271
271
|
___
|
|
272
272
|
|
|
@@ -286,7 +286,7 @@ Sends details to the client.
|
|
|
286
286
|
|
|
287
287
|
#### Defined in
|
|
288
288
|
|
|
289
|
-
[src/StormError.ts:54](https://github.com/breautek/storm/blob/
|
|
289
|
+
[src/StormError.ts:54](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L54)
|
|
290
290
|
|
|
291
291
|
___
|
|
292
292
|
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
#### Defined in
|
|
55
55
|
|
|
56
|
-
[src/InvalidCredentialsError.ts:23](https://github.com/breautek/storm/blob/
|
|
56
|
+
[src/InvalidCredentialsError.ts:23](https://github.com/breautek/storm/blob/6ea3887/src/InvalidCredentialsError.ts#L23)
|
|
57
57
|
|
|
58
58
|
## Properties
|
|
59
59
|
|
|
@@ -160,7 +160,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
160
160
|
|
|
161
161
|
#### Defined in
|
|
162
162
|
|
|
163
|
-
[src/InvalidCredentialsError.ts:31](https://github.com/breautek/storm/blob/
|
|
163
|
+
[src/InvalidCredentialsError.ts:31](https://github.com/breautek/storm/blob/6ea3887/src/InvalidCredentialsError.ts#L31)
|
|
164
164
|
|
|
165
165
|
___
|
|
166
166
|
|
|
@@ -178,7 +178,7 @@ ___
|
|
|
178
178
|
|
|
179
179
|
#### Defined in
|
|
180
180
|
|
|
181
|
-
[src/StormError.ts:70](https://github.com/breautek/storm/blob/
|
|
181
|
+
[src/StormError.ts:70](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L70)
|
|
182
182
|
|
|
183
183
|
___
|
|
184
184
|
|
|
@@ -196,7 +196,7 @@ ___
|
|
|
196
196
|
|
|
197
197
|
#### Defined in
|
|
198
198
|
|
|
199
|
-
[src/StormError.ts:79](https://github.com/breautek/storm/blob/
|
|
199
|
+
[src/StormError.ts:79](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L79)
|
|
200
200
|
|
|
201
201
|
___
|
|
202
202
|
|
|
@@ -214,7 +214,7 @@ ___
|
|
|
214
214
|
|
|
215
215
|
#### Defined in
|
|
216
216
|
|
|
217
|
-
[src/InvalidCredentialsError.ts:35](https://github.com/breautek/storm/blob/
|
|
217
|
+
[src/InvalidCredentialsError.ts:35](https://github.com/breautek/storm/blob/6ea3887/src/InvalidCredentialsError.ts#L35)
|
|
218
218
|
|
|
219
219
|
___
|
|
220
220
|
|
|
@@ -232,7 +232,7 @@ ___
|
|
|
232
232
|
|
|
233
233
|
#### Defined in
|
|
234
234
|
|
|
235
|
-
[src/InvalidCredentialsError.ts:27](https://github.com/breautek/storm/blob/
|
|
235
|
+
[src/InvalidCredentialsError.ts:27](https://github.com/breautek/storm/blob/6ea3887/src/InvalidCredentialsError.ts#L27)
|
|
236
236
|
|
|
237
237
|
___
|
|
238
238
|
|
|
@@ -253,7 +253,7 @@ They are kept secret from the client.
|
|
|
253
253
|
|
|
254
254
|
#### Defined in
|
|
255
255
|
|
|
256
|
-
[src/StormError.ts:62](https://github.com/breautek/storm/blob/
|
|
256
|
+
[src/StormError.ts:62](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L62)
|
|
257
257
|
|
|
258
258
|
___
|
|
259
259
|
|
|
@@ -273,7 +273,7 @@ Sends details to the client.
|
|
|
273
273
|
|
|
274
274
|
#### Defined in
|
|
275
275
|
|
|
276
|
-
[src/StormError.ts:54](https://github.com/breautek/storm/blob/
|
|
276
|
+
[src/StormError.ts:54](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L54)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
#### Defined in
|
|
57
57
|
|
|
58
|
-
[src/InvalidValueError.ts:27](https://github.com/breautek/storm/blob/
|
|
58
|
+
[src/InvalidValueError.ts:27](https://github.com/breautek/storm/blob/6ea3887/src/InvalidValueError.ts#L27)
|
|
59
59
|
|
|
60
60
|
## Properties
|
|
61
61
|
|
|
@@ -162,7 +162,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
162
162
|
|
|
163
163
|
#### Defined in
|
|
164
164
|
|
|
165
|
-
[src/InvalidValueError.ts:40](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/InvalidValueError.ts:40](https://github.com/breautek/storm/blob/6ea3887/src/InvalidValueError.ts#L40)
|
|
166
166
|
|
|
167
167
|
___
|
|
168
168
|
|
|
@@ -180,7 +180,7 @@ ___
|
|
|
180
180
|
|
|
181
181
|
#### Defined in
|
|
182
182
|
|
|
183
|
-
[src/StormError.ts:70](https://github.com/breautek/storm/blob/
|
|
183
|
+
[src/StormError.ts:70](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L70)
|
|
184
184
|
|
|
185
185
|
___
|
|
186
186
|
|
|
@@ -198,7 +198,7 @@ ___
|
|
|
198
198
|
|
|
199
199
|
#### Defined in
|
|
200
200
|
|
|
201
|
-
[src/StormError.ts:79](https://github.com/breautek/storm/blob/
|
|
201
|
+
[src/StormError.ts:79](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L79)
|
|
202
202
|
|
|
203
203
|
___
|
|
204
204
|
|
|
@@ -216,7 +216,7 @@ ___
|
|
|
216
216
|
|
|
217
217
|
#### Defined in
|
|
218
218
|
|
|
219
|
-
[src/InvalidValueError.ts:44](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/InvalidValueError.ts:44](https://github.com/breautek/storm/blob/6ea3887/src/InvalidValueError.ts#L44)
|
|
220
220
|
|
|
221
221
|
___
|
|
222
222
|
|
|
@@ -234,7 +234,7 @@ ___
|
|
|
234
234
|
|
|
235
235
|
#### Defined in
|
|
236
236
|
|
|
237
|
-
[src/InvalidValueError.ts:35](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/InvalidValueError.ts:35](https://github.com/breautek/storm/blob/6ea3887/src/InvalidValueError.ts#L35)
|
|
238
238
|
|
|
239
239
|
___
|
|
240
240
|
|
|
@@ -261,7 +261,7 @@ They are kept secret from the client.
|
|
|
261
261
|
|
|
262
262
|
#### Defined in
|
|
263
263
|
|
|
264
|
-
[src/StormError.ts:62](https://github.com/breautek/storm/blob/
|
|
264
|
+
[src/StormError.ts:62](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L62)
|
|
265
265
|
|
|
266
266
|
___
|
|
267
267
|
|
|
@@ -281,7 +281,7 @@ Sends details to the client.
|
|
|
281
281
|
|
|
282
282
|
#### Defined in
|
|
283
283
|
|
|
284
|
-
[src/StormError.ts:54](https://github.com/breautek/storm/blob/
|
|
284
|
+
[src/StormError.ts:54](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L54)
|
|
285
285
|
|
|
286
286
|
___
|
|
287
287
|
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
|
|
23
23
|
#### Defined in
|
|
24
24
|
|
|
25
|
-
[src/JWTVerifyOptionsParser.ts:20](https://github.com/breautek/storm/blob/
|
|
25
|
+
[src/JWTVerifyOptionsParser.ts:20](https://github.com/breautek/storm/blob/6ea3887/src/JWTVerifyOptionsParser.ts#L20)
|
|
26
26
|
|
|
27
27
|
## Methods
|
|
28
28
|
|
|
@@ -42,4 +42,4 @@
|
|
|
42
42
|
|
|
43
43
|
#### Defined in
|
|
44
44
|
|
|
45
|
-
[src/JWTVerifyOptionsParser.ts:25](https://github.com/breautek/storm/blob/
|
|
45
|
+
[src/JWTVerifyOptionsParser.ts:25](https://github.com/breautek/storm/blob/6ea3887/src/JWTVerifyOptionsParser.ts#L25)
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
#### Defined in
|
|
51
51
|
|
|
52
|
-
[src/ManagedDatabaseConnection.ts:37](https://github.com/breautek/storm/blob/
|
|
52
|
+
[src/ManagedDatabaseConnection.ts:37](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L37)
|
|
53
53
|
|
|
54
54
|
## Methods
|
|
55
55
|
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
|
|
74
74
|
#### Defined in
|
|
75
75
|
|
|
76
|
-
[src/ManagedDatabaseConnection.ts:152](https://github.com/breautek/storm/blob/
|
|
76
|
+
[src/ManagedDatabaseConnection.ts:152](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L152)
|
|
77
77
|
|
|
78
78
|
___
|
|
79
79
|
|
|
@@ -91,7 +91,7 @@ ___
|
|
|
91
91
|
|
|
92
92
|
#### Defined in
|
|
93
93
|
|
|
94
|
-
[src/ManagedDatabaseConnection.ts:189](https://github.com/breautek/storm/blob/
|
|
94
|
+
[src/ManagedDatabaseConnection.ts:189](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L189)
|
|
95
95
|
|
|
96
96
|
___
|
|
97
97
|
|
|
@@ -109,7 +109,7 @@ ___
|
|
|
109
109
|
|
|
110
110
|
#### Defined in
|
|
111
111
|
|
|
112
|
-
[src/ManagedDatabaseConnection.ts:237](https://github.com/breautek/storm/blob/
|
|
112
|
+
[src/ManagedDatabaseConnection.ts:237](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L237)
|
|
113
113
|
|
|
114
114
|
___
|
|
115
115
|
|
|
@@ -127,7 +127,7 @@ ___
|
|
|
127
127
|
|
|
128
128
|
#### Defined in
|
|
129
129
|
|
|
130
|
-
[src/ManagedDatabaseConnection.ts:104](https://github.com/breautek/storm/blob/
|
|
130
|
+
[src/ManagedDatabaseConnection.ts:104](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L104)
|
|
131
131
|
|
|
132
132
|
___
|
|
133
133
|
|
|
@@ -145,7 +145,7 @@ ___
|
|
|
145
145
|
|
|
146
146
|
#### Defined in
|
|
147
147
|
|
|
148
|
-
[src/ManagedDatabaseConnection.ts:129](https://github.com/breautek/storm/blob/
|
|
148
|
+
[src/ManagedDatabaseConnection.ts:129](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L129)
|
|
149
149
|
|
|
150
150
|
___
|
|
151
151
|
|
|
@@ -159,7 +159,7 @@ ___
|
|
|
159
159
|
|
|
160
160
|
#### Defined in
|
|
161
161
|
|
|
162
|
-
[src/ManagedDatabaseConnection.ts:91](https://github.com/breautek/storm/blob/
|
|
162
|
+
[src/ManagedDatabaseConnection.ts:91](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L91)
|
|
163
163
|
|
|
164
164
|
___
|
|
165
165
|
|
|
@@ -177,7 +177,7 @@ ___
|
|
|
177
177
|
|
|
178
178
|
#### Defined in
|
|
179
179
|
|
|
180
|
-
[src/ManagedDatabaseConnection.ts:74](https://github.com/breautek/storm/blob/
|
|
180
|
+
[src/ManagedDatabaseConnection.ts:74](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L74)
|
|
181
181
|
|
|
182
182
|
___
|
|
183
183
|
|
|
@@ -191,7 +191,7 @@ ___
|
|
|
191
191
|
|
|
192
192
|
#### Defined in
|
|
193
193
|
|
|
194
|
-
[src/ManagedDatabaseConnection.ts:87](https://github.com/breautek/storm/blob/
|
|
194
|
+
[src/ManagedDatabaseConnection.ts:87](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L87)
|
|
195
195
|
|
|
196
196
|
___
|
|
197
197
|
|
|
@@ -209,7 +209,7 @@ ___
|
|
|
209
209
|
|
|
210
210
|
#### Defined in
|
|
211
211
|
|
|
212
|
-
[src/ManagedDatabaseConnection.ts:113](https://github.com/breautek/storm/blob/
|
|
212
|
+
[src/ManagedDatabaseConnection.ts:113](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L113)
|
|
213
213
|
|
|
214
214
|
___
|
|
215
215
|
|
|
@@ -227,7 +227,7 @@ ___
|
|
|
227
227
|
|
|
228
228
|
#### Defined in
|
|
229
229
|
|
|
230
|
-
[src/ManagedDatabaseConnection.ts:180](https://github.com/breautek/storm/blob/
|
|
230
|
+
[src/ManagedDatabaseConnection.ts:180](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L180)
|
|
231
231
|
|
|
232
232
|
___
|
|
233
233
|
|
|
@@ -241,7 +241,7 @@ ___
|
|
|
241
241
|
|
|
242
242
|
#### Defined in
|
|
243
243
|
|
|
244
|
-
[src/ManagedDatabaseConnection.ts:83](https://github.com/breautek/storm/blob/
|
|
244
|
+
[src/ManagedDatabaseConnection.ts:83](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L83)
|
|
245
245
|
|
|
246
246
|
___
|
|
247
247
|
|
|
@@ -266,7 +266,7 @@ ___
|
|
|
266
266
|
|
|
267
267
|
#### Defined in
|
|
268
268
|
|
|
269
|
-
[src/ManagedDatabaseConnection.ts:139](https://github.com/breautek/storm/blob/
|
|
269
|
+
[src/ManagedDatabaseConnection.ts:139](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L139)
|
|
270
270
|
|
|
271
271
|
___
|
|
272
272
|
|
|
@@ -284,7 +284,7 @@ ___
|
|
|
284
284
|
|
|
285
285
|
#### Defined in
|
|
286
286
|
|
|
287
|
-
[src/ManagedDatabaseConnection.ts:202](https://github.com/breautek/storm/blob/
|
|
287
|
+
[src/ManagedDatabaseConnection.ts:202](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L202)
|
|
288
288
|
|
|
289
289
|
___
|
|
290
290
|
|
|
@@ -304,7 +304,7 @@ ___
|
|
|
304
304
|
|
|
305
305
|
#### Defined in
|
|
306
306
|
|
|
307
|
-
[src/ManagedDatabaseConnection.ts:44](https://github.com/breautek/storm/blob/
|
|
307
|
+
[src/ManagedDatabaseConnection.ts:44](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L44)
|
|
308
308
|
|
|
309
309
|
___
|
|
310
310
|
|
|
@@ -328,7 +328,7 @@ ___
|
|
|
328
328
|
|
|
329
329
|
#### Defined in
|
|
330
330
|
|
|
331
|
-
[src/ManagedDatabaseConnection.ts:95](https://github.com/breautek/storm/blob/
|
|
331
|
+
[src/ManagedDatabaseConnection.ts:95](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L95)
|
|
332
332
|
|
|
333
333
|
___
|
|
334
334
|
|
|
@@ -352,7 +352,7 @@ ___
|
|
|
352
352
|
|
|
353
353
|
#### Defined in
|
|
354
354
|
|
|
355
|
-
[src/ManagedDatabaseConnection.ts:123](https://github.com/breautek/storm/blob/
|
|
355
|
+
[src/ManagedDatabaseConnection.ts:123](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L123)
|
|
356
356
|
|
|
357
357
|
___
|
|
358
358
|
|
|
@@ -370,7 +370,7 @@ ___
|
|
|
370
370
|
|
|
371
371
|
#### Defined in
|
|
372
372
|
|
|
373
|
-
[src/ManagedDatabaseConnection.ts:167](https://github.com/breautek/storm/blob/
|
|
373
|
+
[src/ManagedDatabaseConnection.ts:167](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L167)
|
|
374
374
|
|
|
375
375
|
___
|
|
376
376
|
|
|
@@ -396,4 +396,4 @@ ___
|
|
|
396
396
|
|
|
397
397
|
#### Defined in
|
|
398
398
|
|
|
399
|
-
[src/ManagedDatabaseConnection.ts:148](https://github.com/breautek/storm/blob/
|
|
399
|
+
[src/ManagedDatabaseConnection.ts:148](https://github.com/breautek/storm/blob/6ea3887/src/ManagedDatabaseConnection.ts#L148)
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
|
|
30
30
|
#### Defined in
|
|
31
31
|
|
|
32
|
-
[src/Middleware.ts:23](https://github.com/breautek/storm/blob/
|
|
32
|
+
[src/Middleware.ts:23](https://github.com/breautek/storm/blob/6ea3887/src/Middleware.ts#L23)
|
|
33
33
|
|
|
34
34
|
## Methods
|
|
35
35
|
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
|
|
51
51
|
#### Defined in
|
|
52
52
|
|
|
53
|
-
[src/Middleware.ts:25](https://github.com/breautek/storm/blob/
|
|
53
|
+
[src/Middleware.ts:25](https://github.com/breautek/storm/blob/6ea3887/src/Middleware.ts#L25)
|
|
54
54
|
|
|
55
55
|
___
|
|
56
56
|
|
|
@@ -71,4 +71,4 @@ ___
|
|
|
71
71
|
|
|
72
72
|
#### Defined in
|
|
73
73
|
|
|
74
|
-
[src/Middleware.ts:27](https://github.com/breautek/storm/blob/
|
|
74
|
+
[src/Middleware.ts:27](https://github.com/breautek/storm/blob/6ea3887/src/Middleware.ts#L27)
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
#### Defined in
|
|
55
55
|
|
|
56
|
-
[src/MissingConfigError.ts:27](https://github.com/breautek/storm/blob/
|
|
56
|
+
[src/MissingConfigError.ts:27](https://github.com/breautek/storm/blob/6ea3887/src/MissingConfigError.ts#L27)
|
|
57
57
|
|
|
58
58
|
## Properties
|
|
59
59
|
|
|
@@ -160,7 +160,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
160
160
|
|
|
161
161
|
#### Defined in
|
|
162
162
|
|
|
163
|
-
[src/MissingConfigError.ts:37](https://github.com/breautek/storm/blob/
|
|
163
|
+
[src/MissingConfigError.ts:37](https://github.com/breautek/storm/blob/6ea3887/src/MissingConfigError.ts#L37)
|
|
164
164
|
|
|
165
165
|
___
|
|
166
166
|
|
|
@@ -178,7 +178,7 @@ ___
|
|
|
178
178
|
|
|
179
179
|
#### Defined in
|
|
180
180
|
|
|
181
|
-
[src/StormError.ts:70](https://github.com/breautek/storm/blob/
|
|
181
|
+
[src/StormError.ts:70](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L70)
|
|
182
182
|
|
|
183
183
|
___
|
|
184
184
|
|
|
@@ -196,7 +196,7 @@ ___
|
|
|
196
196
|
|
|
197
197
|
#### Defined in
|
|
198
198
|
|
|
199
|
-
[src/MissingConfigError.ts:45](https://github.com/breautek/storm/blob/
|
|
199
|
+
[src/MissingConfigError.ts:45](https://github.com/breautek/storm/blob/6ea3887/src/MissingConfigError.ts#L45)
|
|
200
200
|
|
|
201
201
|
___
|
|
202
202
|
|
|
@@ -214,7 +214,7 @@ ___
|
|
|
214
214
|
|
|
215
215
|
#### Defined in
|
|
216
216
|
|
|
217
|
-
[src/MissingConfigError.ts:41](https://github.com/breautek/storm/blob/
|
|
217
|
+
[src/MissingConfigError.ts:41](https://github.com/breautek/storm/blob/6ea3887/src/MissingConfigError.ts#L41)
|
|
218
218
|
|
|
219
219
|
___
|
|
220
220
|
|
|
@@ -232,7 +232,7 @@ ___
|
|
|
232
232
|
|
|
233
233
|
#### Defined in
|
|
234
234
|
|
|
235
|
-
[src/MissingConfigError.ts:33](https://github.com/breautek/storm/blob/
|
|
235
|
+
[src/MissingConfigError.ts:33](https://github.com/breautek/storm/blob/6ea3887/src/MissingConfigError.ts#L33)
|
|
236
236
|
|
|
237
237
|
___
|
|
238
238
|
|
|
@@ -253,7 +253,7 @@ They are kept secret from the client.
|
|
|
253
253
|
|
|
254
254
|
#### Defined in
|
|
255
255
|
|
|
256
|
-
[src/StormError.ts:62](https://github.com/breautek/storm/blob/
|
|
256
|
+
[src/StormError.ts:62](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L62)
|
|
257
257
|
|
|
258
258
|
___
|
|
259
259
|
|
|
@@ -273,7 +273,7 @@ Sends details to the client.
|
|
|
273
273
|
|
|
274
274
|
#### Defined in
|
|
275
275
|
|
|
276
|
-
[src/StormError.ts:54](https://github.com/breautek/storm/blob/
|
|
276
|
+
[src/StormError.ts:54](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L54)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
#### Defined in
|
|
55
55
|
|
|
56
|
-
[src/MissingParameterError.ts:22](https://github.com/breautek/storm/blob/
|
|
56
|
+
[src/MissingParameterError.ts:22](https://github.com/breautek/storm/blob/6ea3887/src/MissingParameterError.ts#L22)
|
|
57
57
|
|
|
58
58
|
## Properties
|
|
59
59
|
|
|
@@ -160,7 +160,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
160
160
|
|
|
161
161
|
#### Defined in
|
|
162
162
|
|
|
163
|
-
[src/MissingParameterError.ts:30](https://github.com/breautek/storm/blob/
|
|
163
|
+
[src/MissingParameterError.ts:30](https://github.com/breautek/storm/blob/6ea3887/src/MissingParameterError.ts#L30)
|
|
164
164
|
|
|
165
165
|
___
|
|
166
166
|
|
|
@@ -178,7 +178,7 @@ ___
|
|
|
178
178
|
|
|
179
179
|
#### Defined in
|
|
180
180
|
|
|
181
|
-
[src/StormError.ts:70](https://github.com/breautek/storm/blob/
|
|
181
|
+
[src/StormError.ts:70](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L70)
|
|
182
182
|
|
|
183
183
|
___
|
|
184
184
|
|
|
@@ -196,7 +196,7 @@ ___
|
|
|
196
196
|
|
|
197
197
|
#### Defined in
|
|
198
198
|
|
|
199
|
-
[src/StormError.ts:79](https://github.com/breautek/storm/blob/
|
|
199
|
+
[src/StormError.ts:79](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L79)
|
|
200
200
|
|
|
201
201
|
___
|
|
202
202
|
|
|
@@ -214,7 +214,7 @@ ___
|
|
|
214
214
|
|
|
215
215
|
#### Defined in
|
|
216
216
|
|
|
217
|
-
[src/MissingParameterError.ts:34](https://github.com/breautek/storm/blob/
|
|
217
|
+
[src/MissingParameterError.ts:34](https://github.com/breautek/storm/blob/6ea3887/src/MissingParameterError.ts#L34)
|
|
218
218
|
|
|
219
219
|
___
|
|
220
220
|
|
|
@@ -232,7 +232,7 @@ ___
|
|
|
232
232
|
|
|
233
233
|
#### Defined in
|
|
234
234
|
|
|
235
|
-
[src/MissingParameterError.ts:26](https://github.com/breautek/storm/blob/
|
|
235
|
+
[src/MissingParameterError.ts:26](https://github.com/breautek/storm/blob/6ea3887/src/MissingParameterError.ts#L26)
|
|
236
236
|
|
|
237
237
|
___
|
|
238
238
|
|
|
@@ -253,7 +253,7 @@ They are kept secret from the client.
|
|
|
253
253
|
|
|
254
254
|
#### Defined in
|
|
255
255
|
|
|
256
|
-
[src/StormError.ts:62](https://github.com/breautek/storm/blob/
|
|
256
|
+
[src/StormError.ts:62](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L62)
|
|
257
257
|
|
|
258
258
|
___
|
|
259
259
|
|
|
@@ -273,7 +273,7 @@ Sends details to the client.
|
|
|
273
273
|
|
|
274
274
|
#### Defined in
|
|
275
275
|
|
|
276
|
-
[src/StormError.ts:54](https://github.com/breautek/storm/blob/
|
|
276
|
+
[src/StormError.ts:54](https://github.com/breautek/storm/blob/6ea3887/src/StormError.ts#L54)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|