@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.
- package/CHANGELOG.md +14 -0
- package/docs/README.md +28 -20
- package/docs/classes/Application.md +158 -76
- package/docs/classes/BackendAuthenticationMiddleware.md +3 -3
- package/docs/classes/CORSMiddleware.md +8 -8
- package/docs/classes/ConfigLoader.md +1 -1
- package/docs/classes/Database.md +12 -12
- package/docs/classes/DatabaseConnection.md +42 -40
- package/docs/classes/DatabaseQueryError.md +22 -18
- package/docs/classes/DeadLockError.md +349 -0
- package/docs/classes/DiskSpaceError.md +20 -18
- package/docs/classes/DropTemporaryTableQuery.md +8 -8
- package/docs/classes/DumpStream.md +1 -1
- package/docs/classes/DuplicateEntryError.md +20 -18
- package/docs/classes/EntityNotFoundError.md +20 -18
- package/docs/classes/ExpiredTokenError.md +20 -18
- package/docs/classes/Handler.md +14 -14
- package/docs/classes/InternalError.md +20 -18
- package/docs/classes/InvalidCredentialsError.md +20 -18
- package/docs/classes/InvalidValueError.md +20 -18
- package/docs/classes/ManagedDatabaseConnection.md +19 -19
- package/docs/classes/Middleware.md +3 -3
- package/docs/classes/MissingConfigError.md +20 -18
- package/docs/classes/MissingParameterError.md +20 -18
- package/docs/classes/MySQLConnection.md +73 -43
- package/docs/classes/MySQLDatabase.md +13 -13
- package/docs/classes/NotImplementedError.md +20 -18
- package/docs/classes/Query.md +8 -8
- package/docs/classes/RawError.md +20 -20
- package/docs/classes/RawQuery.md +8 -8
- package/docs/classes/Request.md +18 -18
- package/docs/classes/Response.md +11 -11
- package/docs/classes/ResponseData.md +7 -7
- package/docs/classes/ServiceProvider.md +15 -15
- package/docs/classes/ServiceResponse.md +4 -4
- package/docs/classes/SetSessionVariableQuery.md +8 -8
- package/docs/classes/StormError.md +20 -18
- package/docs/classes/TemporaryTableQuery.md +8 -8
- package/docs/classes/Token.md +2 -2
- package/docs/classes/TokenManager.md +4 -4
- package/docs/classes/UnauthorizedAccessError.md +20 -18
- package/docs/enums/ErrorCode.md +18 -18
- package/docs/enums/ExitCode.md +4 -4
- package/docs/enums/HTTPMethod.md +8 -8
- package/docs/enums/JWTError.md +4 -4
- package/docs/enums/StatusCode.md +96 -96
- package/docs/interfaces/IConfig.md +8 -8
- package/docs/interfaces/IDatabaseConfig.md +6 -6
- package/docs/interfaces/IDatabaseConnection.md +14 -14
- package/docs/interfaces/IErrorResponse.md +5 -5
- package/docs/interfaces/IFormData.md +2 -2
- package/docs/interfaces/IHandler.md +1 -1
- package/docs/interfaces/IInsertQueryResult.md +3 -3
- package/docs/interfaces/IJWTVerifyOptions.md +1 -1
- package/docs/interfaces/IRequestResponse.md +2 -2
- package/docs/interfaces/ISetSessionVariableQueryInput.md +2 -2
- package/docs/interfaces/ITemporaryTableQueryInput.md +2 -2
- package/docs/interfaces/IUpdateQueryResult.md +2 -2
- package/docs/interfaces/formidable.File.md +3 -1
- package/docs/interfaces/formidable.FileJSON.md +3 -1
- package/docs/interfaces/formidable.Options.md +33 -11
- package/docs/interfaces/formidable.Part.md +65 -35
- package/lib/DeadLockError.d.ts +6 -0
- package/lib/DeadLockError.js +26 -0
- package/lib/DeadLockError.js.map +1 -0
- package/lib/MySQLConnection.js +11 -1
- package/lib/MySQLConnection.js.map +1 -1
- package/lib/api.d.ts +1 -0
- package/lib/api.js +3 -1
- package/lib/api.js.map +1 -1
- package/package.json +19 -18
- package/src/DeadLockError.ts +22 -0
- package/src/MySQLConnection.ts +13 -1
- package/src/api.ts +1 -0
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
#### Defined in
|
|
55
55
|
|
|
56
|
-
[src/InternalError.ts:23](https://github.com/breautek/storm/blob/
|
|
56
|
+
[src/InternalError.ts:23](https://github.com/breautek/storm/blob/306a47f/src/InternalError.ts#L23)
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
-
**`
|
|
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/InternalError.ts:31](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/InternalError.ts:31](https://github.com/breautek/storm/blob/306a47f/src/InternalError.ts#L31)
|
|
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/
|
|
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/
|
|
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/InternalError.ts:35](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/InternalError.ts:35](https://github.com/breautek/storm/blob/306a47f/src/InternalError.ts#L35)
|
|
218
220
|
|
|
219
221
|
___
|
|
220
222
|
|
|
@@ -232,7 +234,7 @@ ___
|
|
|
232
234
|
|
|
233
235
|
#### Defined in
|
|
234
236
|
|
|
235
|
-
[src/InternalError.ts:39](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/InternalError.ts:39](https://github.com/breautek/storm/blob/306a47f/src/InternalError.ts#L39)
|
|
236
238
|
|
|
237
239
|
___
|
|
238
240
|
|
|
@@ -250,7 +252,7 @@ ___
|
|
|
250
252
|
|
|
251
253
|
#### Defined in
|
|
252
254
|
|
|
253
|
-
[src/StormError.ts:93](https://github.com/breautek/storm/blob/
|
|
255
|
+
[src/StormError.ts:93](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L93)
|
|
254
256
|
|
|
255
257
|
___
|
|
256
258
|
|
|
@@ -268,7 +270,7 @@ ___
|
|
|
268
270
|
|
|
269
271
|
#### Defined in
|
|
270
272
|
|
|
271
|
-
[src/InternalError.ts:27](https://github.com/breautek/storm/blob/
|
|
273
|
+
[src/InternalError.ts:27](https://github.com/breautek/storm/blob/306a47f/src/InternalError.ts#L27)
|
|
272
274
|
|
|
273
275
|
___
|
|
274
276
|
|
|
@@ -276,7 +278,7 @@ ___
|
|
|
276
278
|
|
|
277
279
|
▸ **getPrivateDetails**(): `any`
|
|
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/
|
|
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/
|
|
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
|
|
@@ -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/306a47f/src/InvalidCredentialsError.ts#L23)
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
-
**`
|
|
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/InvalidCredentialsError.ts:31](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/InvalidCredentialsError.ts:31](https://github.com/breautek/storm/blob/306a47f/src/InvalidCredentialsError.ts#L31)
|
|
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/
|
|
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/
|
|
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/InvalidCredentialsError.ts:35](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/InvalidCredentialsError.ts:35](https://github.com/breautek/storm/blob/306a47f/src/InvalidCredentialsError.ts#L35)
|
|
218
220
|
|
|
219
221
|
___
|
|
220
222
|
|
|
@@ -232,7 +234,7 @@ ___
|
|
|
232
234
|
|
|
233
235
|
#### Defined in
|
|
234
236
|
|
|
235
|
-
[src/InvalidCredentialsError.ts:39](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/InvalidCredentialsError.ts:39](https://github.com/breautek/storm/blob/306a47f/src/InvalidCredentialsError.ts#L39)
|
|
236
238
|
|
|
237
239
|
___
|
|
238
240
|
|
|
@@ -250,7 +252,7 @@ ___
|
|
|
250
252
|
|
|
251
253
|
#### Defined in
|
|
252
254
|
|
|
253
|
-
[src/StormError.ts:93](https://github.com/breautek/storm/blob/
|
|
255
|
+
[src/StormError.ts:93](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L93)
|
|
254
256
|
|
|
255
257
|
___
|
|
256
258
|
|
|
@@ -268,7 +270,7 @@ ___
|
|
|
268
270
|
|
|
269
271
|
#### Defined in
|
|
270
272
|
|
|
271
|
-
[src/InvalidCredentialsError.ts:27](https://github.com/breautek/storm/blob/
|
|
273
|
+
[src/InvalidCredentialsError.ts:27](https://github.com/breautek/storm/blob/306a47f/src/InvalidCredentialsError.ts#L27)
|
|
272
274
|
|
|
273
275
|
___
|
|
274
276
|
|
|
@@ -276,7 +278,7 @@ ___
|
|
|
276
278
|
|
|
277
279
|
▸ **getPrivateDetails**(): `any`
|
|
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/
|
|
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/
|
|
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
|
|
@@ -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/306a47f/src/InvalidValueError.ts#L27)
|
|
59
59
|
|
|
60
60
|
## Properties
|
|
61
61
|
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
|
|
70
70
|
#### Defined in
|
|
71
71
|
|
|
72
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
72
|
+
node_modules/typescript/lib/lib.es5.d.ts:1041
|
|
73
73
|
|
|
74
74
|
___
|
|
75
75
|
|
|
@@ -83,7 +83,7 @@ ___
|
|
|
83
83
|
|
|
84
84
|
#### Defined in
|
|
85
85
|
|
|
86
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
86
|
+
node_modules/typescript/lib/lib.es5.d.ts:1040
|
|
87
87
|
|
|
88
88
|
___
|
|
89
89
|
|
|
@@ -97,7 +97,7 @@ ___
|
|
|
97
97
|
|
|
98
98
|
#### Defined in
|
|
99
99
|
|
|
100
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
100
|
+
node_modules/typescript/lib/lib.es5.d.ts:1042
|
|
101
101
|
|
|
102
102
|
___
|
|
103
103
|
|
|
@@ -111,7 +111,9 @@ ___
|
|
|
111
111
|
|
|
112
112
|
Optional override for formatting stack traces
|
|
113
113
|
|
|
114
|
-
**`
|
|
114
|
+
**`See`**
|
|
115
|
+
|
|
116
|
+
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
|
|
115
117
|
|
|
116
118
|
##### Parameters
|
|
117
119
|
|
|
@@ -130,7 +132,7 @@ Optional override for formatting stack traces
|
|
|
130
132
|
|
|
131
133
|
#### Defined in
|
|
132
134
|
|
|
133
|
-
node_modules/@types/node/globals.d.ts:11
|
|
135
|
+
node_modules/@types/node/ts4.8/globals.d.ts:11
|
|
134
136
|
|
|
135
137
|
___
|
|
136
138
|
|
|
@@ -144,7 +146,7 @@ ___
|
|
|
144
146
|
|
|
145
147
|
#### Defined in
|
|
146
148
|
|
|
147
|
-
node_modules/@types/node/globals.d.ts:13
|
|
149
|
+
node_modules/@types/node/ts4.8/globals.d.ts:13
|
|
148
150
|
|
|
149
151
|
## Methods
|
|
150
152
|
|
|
@@ -162,7 +164,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
162
164
|
|
|
163
165
|
#### Defined in
|
|
164
166
|
|
|
165
|
-
[src/InvalidValueError.ts:40](https://github.com/breautek/storm/blob/
|
|
167
|
+
[src/InvalidValueError.ts:40](https://github.com/breautek/storm/blob/306a47f/src/InvalidValueError.ts#L40)
|
|
166
168
|
|
|
167
169
|
___
|
|
168
170
|
|
|
@@ -180,7 +182,7 @@ ___
|
|
|
180
182
|
|
|
181
183
|
#### Defined in
|
|
182
184
|
|
|
183
|
-
[src/StormError.ts:76](https://github.com/breautek/storm/blob/
|
|
185
|
+
[src/StormError.ts:76](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L76)
|
|
184
186
|
|
|
185
187
|
___
|
|
186
188
|
|
|
@@ -198,7 +200,7 @@ ___
|
|
|
198
200
|
|
|
199
201
|
#### Defined in
|
|
200
202
|
|
|
201
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/
|
|
203
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L97)
|
|
202
204
|
|
|
203
205
|
___
|
|
204
206
|
|
|
@@ -216,7 +218,7 @@ ___
|
|
|
216
218
|
|
|
217
219
|
#### Defined in
|
|
218
220
|
|
|
219
|
-
[src/InvalidValueError.ts:44](https://github.com/breautek/storm/blob/
|
|
221
|
+
[src/InvalidValueError.ts:44](https://github.com/breautek/storm/blob/306a47f/src/InvalidValueError.ts#L44)
|
|
220
222
|
|
|
221
223
|
___
|
|
222
224
|
|
|
@@ -234,7 +236,7 @@ ___
|
|
|
234
236
|
|
|
235
237
|
#### Defined in
|
|
236
238
|
|
|
237
|
-
[src/InvalidValueError.ts:48](https://github.com/breautek/storm/blob/
|
|
239
|
+
[src/InvalidValueError.ts:48](https://github.com/breautek/storm/blob/306a47f/src/InvalidValueError.ts#L48)
|
|
238
240
|
|
|
239
241
|
___
|
|
240
242
|
|
|
@@ -252,7 +254,7 @@ ___
|
|
|
252
254
|
|
|
253
255
|
#### Defined in
|
|
254
256
|
|
|
255
|
-
[src/InvalidValueError.ts:52](https://github.com/breautek/storm/blob/
|
|
257
|
+
[src/InvalidValueError.ts:52](https://github.com/breautek/storm/blob/306a47f/src/InvalidValueError.ts#L52)
|
|
256
258
|
|
|
257
259
|
___
|
|
258
260
|
|
|
@@ -270,7 +272,7 @@ ___
|
|
|
270
272
|
|
|
271
273
|
#### Defined in
|
|
272
274
|
|
|
273
|
-
[src/InvalidValueError.ts:35](https://github.com/breautek/storm/blob/
|
|
275
|
+
[src/InvalidValueError.ts:35](https://github.com/breautek/storm/blob/306a47f/src/InvalidValueError.ts#L35)
|
|
274
276
|
|
|
275
277
|
___
|
|
276
278
|
|
|
@@ -278,7 +280,7 @@ ___
|
|
|
278
280
|
|
|
279
281
|
▸ **getPrivateDetails**(): `Object`
|
|
280
282
|
|
|
281
|
-
Private details are only logged to the server log.
|
|
283
|
+
Private details are only logged to the server log.
|
|
282
284
|
They are kept secret from the client.
|
|
283
285
|
|
|
284
286
|
#### Returns
|
|
@@ -297,7 +299,7 @@ They are kept secret from the client.
|
|
|
297
299
|
|
|
298
300
|
#### Defined in
|
|
299
301
|
|
|
300
|
-
[src/StormError.ts:68](https://github.com/breautek/storm/blob/
|
|
302
|
+
[src/StormError.ts:68](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L68)
|
|
301
303
|
|
|
302
304
|
___
|
|
303
305
|
|
|
@@ -317,7 +319,7 @@ Sends details to the client.
|
|
|
317
319
|
|
|
318
320
|
#### Defined in
|
|
319
321
|
|
|
320
|
-
[src/StormError.ts:60](https://github.com/breautek/storm/blob/
|
|
322
|
+
[src/StormError.ts:60](https://github.com/breautek/storm/blob/306a47f/src/StormError.ts#L60)
|
|
321
323
|
|
|
322
324
|
___
|
|
323
325
|
|
|
@@ -344,4 +346,4 @@ Create .stack property on a target object
|
|
|
344
346
|
|
|
345
347
|
#### Defined in
|
|
346
348
|
|
|
347
|
-
node_modules/@types/node/globals.d.ts:4
|
|
349
|
+
node_modules/@types/node/ts4.8/globals.d.ts:4
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
|
|
48
48
|
#### Defined in
|
|
49
49
|
|
|
50
|
-
[src/ManagedDatabaseConnection.ts:37](https://github.com/breautek/storm/blob/
|
|
50
|
+
[src/ManagedDatabaseConnection.ts:37](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L37)
|
|
51
51
|
|
|
52
52
|
## Methods
|
|
53
53
|
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
|
|
72
72
|
#### Defined in
|
|
73
73
|
|
|
74
|
-
[src/ManagedDatabaseConnection.ts:152](https://github.com/breautek/storm/blob/
|
|
74
|
+
[src/ManagedDatabaseConnection.ts:152](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L152)
|
|
75
75
|
|
|
76
76
|
___
|
|
77
77
|
|
|
@@ -89,7 +89,7 @@ ___
|
|
|
89
89
|
|
|
90
90
|
#### Defined in
|
|
91
91
|
|
|
92
|
-
[src/ManagedDatabaseConnection.ts:189](https://github.com/breautek/storm/blob/
|
|
92
|
+
[src/ManagedDatabaseConnection.ts:189](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L189)
|
|
93
93
|
|
|
94
94
|
___
|
|
95
95
|
|
|
@@ -107,7 +107,7 @@ ___
|
|
|
107
107
|
|
|
108
108
|
#### Defined in
|
|
109
109
|
|
|
110
|
-
[src/ManagedDatabaseConnection.ts:237](https://github.com/breautek/storm/blob/
|
|
110
|
+
[src/ManagedDatabaseConnection.ts:237](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L237)
|
|
111
111
|
|
|
112
112
|
___
|
|
113
113
|
|
|
@@ -125,7 +125,7 @@ ___
|
|
|
125
125
|
|
|
126
126
|
#### Defined in
|
|
127
127
|
|
|
128
|
-
[src/ManagedDatabaseConnection.ts:104](https://github.com/breautek/storm/blob/
|
|
128
|
+
[src/ManagedDatabaseConnection.ts:104](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L104)
|
|
129
129
|
|
|
130
130
|
___
|
|
131
131
|
|
|
@@ -143,7 +143,7 @@ ___
|
|
|
143
143
|
|
|
144
144
|
#### Defined in
|
|
145
145
|
|
|
146
|
-
[src/ManagedDatabaseConnection.ts:129](https://github.com/breautek/storm/blob/
|
|
146
|
+
[src/ManagedDatabaseConnection.ts:129](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L129)
|
|
147
147
|
|
|
148
148
|
___
|
|
149
149
|
|
|
@@ -157,7 +157,7 @@ ___
|
|
|
157
157
|
|
|
158
158
|
#### Defined in
|
|
159
159
|
|
|
160
|
-
[src/ManagedDatabaseConnection.ts:91](https://github.com/breautek/storm/blob/
|
|
160
|
+
[src/ManagedDatabaseConnection.ts:91](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L91)
|
|
161
161
|
|
|
162
162
|
___
|
|
163
163
|
|
|
@@ -175,7 +175,7 @@ ___
|
|
|
175
175
|
|
|
176
176
|
#### Defined in
|
|
177
177
|
|
|
178
|
-
[src/ManagedDatabaseConnection.ts:74](https://github.com/breautek/storm/blob/
|
|
178
|
+
[src/ManagedDatabaseConnection.ts:74](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L74)
|
|
179
179
|
|
|
180
180
|
___
|
|
181
181
|
|
|
@@ -189,7 +189,7 @@ ___
|
|
|
189
189
|
|
|
190
190
|
#### Defined in
|
|
191
191
|
|
|
192
|
-
[src/ManagedDatabaseConnection.ts:87](https://github.com/breautek/storm/blob/
|
|
192
|
+
[src/ManagedDatabaseConnection.ts:87](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L87)
|
|
193
193
|
|
|
194
194
|
___
|
|
195
195
|
|
|
@@ -207,7 +207,7 @@ ___
|
|
|
207
207
|
|
|
208
208
|
#### Defined in
|
|
209
209
|
|
|
210
|
-
[src/ManagedDatabaseConnection.ts:113](https://github.com/breautek/storm/blob/
|
|
210
|
+
[src/ManagedDatabaseConnection.ts:113](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L113)
|
|
211
211
|
|
|
212
212
|
___
|
|
213
213
|
|
|
@@ -225,7 +225,7 @@ ___
|
|
|
225
225
|
|
|
226
226
|
#### Defined in
|
|
227
227
|
|
|
228
|
-
[src/ManagedDatabaseConnection.ts:180](https://github.com/breautek/storm/blob/
|
|
228
|
+
[src/ManagedDatabaseConnection.ts:180](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L180)
|
|
229
229
|
|
|
230
230
|
___
|
|
231
231
|
|
|
@@ -239,7 +239,7 @@ ___
|
|
|
239
239
|
|
|
240
240
|
#### Defined in
|
|
241
241
|
|
|
242
|
-
[src/ManagedDatabaseConnection.ts:83](https://github.com/breautek/storm/blob/
|
|
242
|
+
[src/ManagedDatabaseConnection.ts:83](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L83)
|
|
243
243
|
|
|
244
244
|
___
|
|
245
245
|
|
|
@@ -264,7 +264,7 @@ ___
|
|
|
264
264
|
|
|
265
265
|
#### Defined in
|
|
266
266
|
|
|
267
|
-
[src/ManagedDatabaseConnection.ts:139](https://github.com/breautek/storm/blob/
|
|
267
|
+
[src/ManagedDatabaseConnection.ts:139](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L139)
|
|
268
268
|
|
|
269
269
|
___
|
|
270
270
|
|
|
@@ -282,7 +282,7 @@ ___
|
|
|
282
282
|
|
|
283
283
|
#### Defined in
|
|
284
284
|
|
|
285
|
-
[src/ManagedDatabaseConnection.ts:202](https://github.com/breautek/storm/blob/
|
|
285
|
+
[src/ManagedDatabaseConnection.ts:202](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L202)
|
|
286
286
|
|
|
287
287
|
___
|
|
288
288
|
|
|
@@ -302,7 +302,7 @@ ___
|
|
|
302
302
|
|
|
303
303
|
#### Defined in
|
|
304
304
|
|
|
305
|
-
[src/ManagedDatabaseConnection.ts:44](https://github.com/breautek/storm/blob/
|
|
305
|
+
[src/ManagedDatabaseConnection.ts:44](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L44)
|
|
306
306
|
|
|
307
307
|
___
|
|
308
308
|
|
|
@@ -326,7 +326,7 @@ ___
|
|
|
326
326
|
|
|
327
327
|
#### Defined in
|
|
328
328
|
|
|
329
|
-
[src/ManagedDatabaseConnection.ts:95](https://github.com/breautek/storm/blob/
|
|
329
|
+
[src/ManagedDatabaseConnection.ts:95](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L95)
|
|
330
330
|
|
|
331
331
|
___
|
|
332
332
|
|
|
@@ -350,7 +350,7 @@ ___
|
|
|
350
350
|
|
|
351
351
|
#### Defined in
|
|
352
352
|
|
|
353
|
-
[src/ManagedDatabaseConnection.ts:123](https://github.com/breautek/storm/blob/
|
|
353
|
+
[src/ManagedDatabaseConnection.ts:123](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L123)
|
|
354
354
|
|
|
355
355
|
___
|
|
356
356
|
|
|
@@ -368,7 +368,7 @@ ___
|
|
|
368
368
|
|
|
369
369
|
#### Defined in
|
|
370
370
|
|
|
371
|
-
[src/ManagedDatabaseConnection.ts:167](https://github.com/breautek/storm/blob/
|
|
371
|
+
[src/ManagedDatabaseConnection.ts:167](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L167)
|
|
372
372
|
|
|
373
373
|
___
|
|
374
374
|
|
|
@@ -394,4 +394,4 @@ ___
|
|
|
394
394
|
|
|
395
395
|
#### Defined in
|
|
396
396
|
|
|
397
|
-
[src/ManagedDatabaseConnection.ts:148](https://github.com/breautek/storm/blob/
|
|
397
|
+
[src/ManagedDatabaseConnection.ts:148](https://github.com/breautek/storm/blob/306a47f/src/ManagedDatabaseConnection.ts#L148)
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
#### Defined in
|
|
29
29
|
|
|
30
|
-
[src/Middleware.ts:23](https://github.com/breautek/storm/blob/
|
|
30
|
+
[src/Middleware.ts:23](https://github.com/breautek/storm/blob/306a47f/src/Middleware.ts#L23)
|
|
31
31
|
|
|
32
32
|
## Methods
|
|
33
33
|
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
|
|
49
49
|
#### Defined in
|
|
50
50
|
|
|
51
|
-
[src/Middleware.ts:25](https://github.com/breautek/storm/blob/
|
|
51
|
+
[src/Middleware.ts:25](https://github.com/breautek/storm/blob/306a47f/src/Middleware.ts#L25)
|
|
52
52
|
|
|
53
53
|
___
|
|
54
54
|
|
|
@@ -69,4 +69,4 @@ ___
|
|
|
69
69
|
|
|
70
70
|
#### Defined in
|
|
71
71
|
|
|
72
|
-
[src/Middleware.ts:27](https://github.com/breautek/storm/blob/
|
|
72
|
+
[src/Middleware.ts:27](https://github.com/breautek/storm/blob/306a47f/src/Middleware.ts#L27)
|