@breautek/storm 4.6.3 → 5.0.1-beta.2
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/.eslintrc.js +6 -4
- package/CHANGELOG.md +28 -0
- package/docs/README.md +8 -5
- package/docs/classes/Application.md +26 -26
- package/docs/classes/BackendAuthenticationMiddleware.md +2 -2
- package/docs/classes/CORSMiddleware.md +6 -6
- package/docs/classes/ConfigLoader.md +1 -1
- package/docs/classes/Database.md +12 -12
- package/docs/classes/DatabaseCastObject.md +3 -3
- package/docs/classes/DatabaseConnection.md +21 -21
- package/docs/classes/DatabaseQueryError.md +12 -10
- package/docs/classes/DeadLockError.md +10 -10
- package/docs/classes/DiskSpaceError.md +10 -10
- package/docs/classes/DropTemporaryTableQuery.md +10 -10
- package/docs/classes/DumpStream.md +1 -1
- package/docs/classes/DuplicateEntryError.md +10 -10
- package/docs/classes/EntityNotFoundError.md +10 -10
- package/docs/classes/ExpiredTokenError.md +10 -10
- package/docs/classes/Handler.md +13 -34
- package/docs/classes/InternalError.md +10 -10
- package/docs/classes/InvalidCredentialsError.md +10 -10
- package/docs/classes/InvalidValueError.md +10 -10
- package/docs/classes/LineString.md +4 -4
- package/docs/classes/LockWaitTimeoutError.md +349 -0
- package/docs/classes/ManagedDatabaseConnection.md +19 -19
- package/docs/classes/Middleware.md +3 -3
- package/docs/classes/MissingConfigError.md +10 -10
- package/docs/classes/MissingParameterError.md +10 -10
- package/docs/classes/MySQLConnection.md +22 -22
- package/docs/classes/MySQLDatabase.md +13 -13
- package/docs/classes/NotImplementedError.md +10 -10
- package/docs/classes/Point.md +4 -4
- package/docs/classes/Polygon.md +4 -4
- package/docs/classes/Query.md +34 -10
- package/docs/classes/RawError.md +10 -10
- package/docs/classes/RawQuery.md +10 -10
- 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 +19 -4
- package/docs/classes/SetSessionVariableQuery.md +8 -8
- package/docs/classes/StormError.md +10 -10
- package/docs/classes/TemporaryTableQuery.md +8 -8
- package/docs/classes/Token.md +2 -2
- package/docs/classes/TokenManager.md +4 -4
- package/docs/classes/Transaction.md +161 -0
- package/docs/classes/UnauthorizedAccessError.md +10 -10
- package/docs/enums/ErrorCode.md +9 -9
- package/docs/enums/ExitCode.md +2 -2
- package/docs/enums/HTTPMethod.md +4 -4
- package/docs/enums/IsolationLevel.md +4 -4
- package/docs/enums/JWTError.md +2 -2
- package/docs/enums/StatusCode.md +48 -48
- package/docs/interfaces/IConfig.md +8 -8
- package/docs/interfaces/IDatabaseConfig.md +6 -6
- package/docs/interfaces/IDatabaseConnection.md +16 -16
- 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/IQueryable.md +119 -0
- 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/jest.config.js +9 -5
- package/lib/DatabaseConnection.d.ts +3 -3
- package/lib/DatabaseConnection.js.map +1 -1
- package/lib/Handler.d.ts +0 -1
- package/lib/Handler.js +0 -2
- package/lib/Handler.js.map +1 -1
- package/lib/IDatabaseConnection.d.ts +3 -3
- package/lib/IQueryable.d.ts +8 -0
- package/lib/IQueryable.js +18 -0
- package/lib/IQueryable.js.map +1 -0
- package/lib/LockWaitTimeoutError.d.ts +6 -0
- package/lib/LockWaitTimeoutError.js +26 -0
- package/lib/LockWaitTimeoutError.js.map +1 -0
- package/lib/MySQLConnection.js +22 -4
- package/lib/MySQLConnection.js.map +1 -1
- package/lib/Query.d.ts +3 -2
- package/lib/Query.js.map +1 -1
- package/lib/ServiceResponse.d.ts +2 -0
- package/lib/ServiceResponse.js +3 -0
- package/lib/ServiceResponse.js.map +1 -1
- package/lib/SetSessionVariableQuery.js +2 -2
- package/lib/SetSessionVariableQuery.js.map +1 -1
- package/lib/Transaction.d.ts +24 -0
- package/lib/Transaction.js +88 -0
- package/lib/Transaction.js.map +1 -0
- package/lib/api.d.ts +3 -0
- package/lib/api.js +6 -2
- package/lib/api.js.map +1 -1
- package/package.json +11 -12
- package/src/DatabaseConnection.ts +4 -4
- package/src/Handler.ts +0 -4
- package/src/IDatabaseConnection.ts +3 -3
- package/src/IQueryable.ts +25 -0
- package/src/LockWaitTimeoutError.ts +22 -0
- package/src/MySQLConnection.ts +22 -4
- package/src/Query.ts +3 -2
- package/src/ServiceResponse.ts +5 -0
- package/src/SetSessionVariableQuery.ts +2 -2
- package/src/Transaction.ts +103 -0
- package/src/api.ts +3 -0
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
[@breautek/storm](../README.md) / LockWaitTimeoutError
|
|
2
|
+
|
|
3
|
+
# Class: LockWaitTimeoutError
|
|
4
|
+
|
|
5
|
+
DeadLockError is a DatabaseQueryError but is subclasses for typing purposes.
|
|
6
|
+
|
|
7
|
+
## Hierarchy
|
|
8
|
+
|
|
9
|
+
- [`DatabaseQueryError`](DatabaseQueryError.md)
|
|
10
|
+
|
|
11
|
+
↳ **`LockWaitTimeoutError`**
|
|
12
|
+
|
|
13
|
+
## Table of contents
|
|
14
|
+
|
|
15
|
+
### Constructors
|
|
16
|
+
|
|
17
|
+
- [constructor](LockWaitTimeoutError.md#constructor)
|
|
18
|
+
|
|
19
|
+
### Properties
|
|
20
|
+
|
|
21
|
+
- [message](LockWaitTimeoutError.md#message)
|
|
22
|
+
- [name](LockWaitTimeoutError.md#name)
|
|
23
|
+
- [stack](LockWaitTimeoutError.md#stack)
|
|
24
|
+
- [prepareStackTrace](LockWaitTimeoutError.md#preparestacktrace)
|
|
25
|
+
- [stackTraceLimit](LockWaitTimeoutError.md#stacktracelimit)
|
|
26
|
+
|
|
27
|
+
### Methods
|
|
28
|
+
|
|
29
|
+
- [getCode](LockWaitTimeoutError.md#getcode)
|
|
30
|
+
- [getErrorResponse](LockWaitTimeoutError.md#geterrorresponse)
|
|
31
|
+
- [getExitCode](LockWaitTimeoutError.md#getexitcode)
|
|
32
|
+
- [getHTTPCode](LockWaitTimeoutError.md#gethttpcode)
|
|
33
|
+
- [getLocaleCode](LockWaitTimeoutError.md#getlocalecode)
|
|
34
|
+
- [getLocaleParameters](LockWaitTimeoutError.md#getlocaleparameters)
|
|
35
|
+
- [getMessage](LockWaitTimeoutError.md#getmessage)
|
|
36
|
+
- [getPrivateDetails](LockWaitTimeoutError.md#getprivatedetails)
|
|
37
|
+
- [getPublicDetails](LockWaitTimeoutError.md#getpublicdetails)
|
|
38
|
+
- [captureStackTrace](LockWaitTimeoutError.md#capturestacktrace)
|
|
39
|
+
|
|
40
|
+
## Constructors
|
|
41
|
+
|
|
42
|
+
### constructor
|
|
43
|
+
|
|
44
|
+
• **new LockWaitTimeoutError**(`query`, `error`)
|
|
45
|
+
|
|
46
|
+
#### Parameters
|
|
47
|
+
|
|
48
|
+
| Name | Type |
|
|
49
|
+
| :------ | :------ |
|
|
50
|
+
| `query` | `string` |
|
|
51
|
+
| `error` | `any` |
|
|
52
|
+
|
|
53
|
+
#### Inherited from
|
|
54
|
+
|
|
55
|
+
[DatabaseQueryError](DatabaseQueryError.md).[constructor](DatabaseQueryError.md#constructor)
|
|
56
|
+
|
|
57
|
+
#### Defined in
|
|
58
|
+
|
|
59
|
+
[src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/d45307d/src/DatabaseQueryError.ts#L25)
|
|
60
|
+
|
|
61
|
+
## Properties
|
|
62
|
+
|
|
63
|
+
### message
|
|
64
|
+
|
|
65
|
+
• **message**: `string`
|
|
66
|
+
|
|
67
|
+
#### Inherited from
|
|
68
|
+
|
|
69
|
+
[DatabaseQueryError](DatabaseQueryError.md).[message](DatabaseQueryError.md#message)
|
|
70
|
+
|
|
71
|
+
#### Defined in
|
|
72
|
+
|
|
73
|
+
node_modules/typescript/lib/lib.es5.d.ts:1054
|
|
74
|
+
|
|
75
|
+
___
|
|
76
|
+
|
|
77
|
+
### name
|
|
78
|
+
|
|
79
|
+
• **name**: `string`
|
|
80
|
+
|
|
81
|
+
#### Inherited from
|
|
82
|
+
|
|
83
|
+
[DatabaseQueryError](DatabaseQueryError.md).[name](DatabaseQueryError.md#name)
|
|
84
|
+
|
|
85
|
+
#### Defined in
|
|
86
|
+
|
|
87
|
+
node_modules/typescript/lib/lib.es5.d.ts:1053
|
|
88
|
+
|
|
89
|
+
___
|
|
90
|
+
|
|
91
|
+
### stack
|
|
92
|
+
|
|
93
|
+
• `Optional` **stack**: `string`
|
|
94
|
+
|
|
95
|
+
#### Inherited from
|
|
96
|
+
|
|
97
|
+
[DatabaseQueryError](DatabaseQueryError.md).[stack](DatabaseQueryError.md#stack)
|
|
98
|
+
|
|
99
|
+
#### Defined in
|
|
100
|
+
|
|
101
|
+
node_modules/typescript/lib/lib.es5.d.ts:1055
|
|
102
|
+
|
|
103
|
+
___
|
|
104
|
+
|
|
105
|
+
### prepareStackTrace
|
|
106
|
+
|
|
107
|
+
▪ `Static` `Optional` **prepareStackTrace**: (`err`: `Error`, `stackTraces`: `CallSite`[]) => `any`
|
|
108
|
+
|
|
109
|
+
#### Type declaration
|
|
110
|
+
|
|
111
|
+
▸ (`err`, `stackTraces`): `any`
|
|
112
|
+
|
|
113
|
+
Optional override for formatting stack traces
|
|
114
|
+
|
|
115
|
+
**`See`**
|
|
116
|
+
|
|
117
|
+
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
|
|
118
|
+
|
|
119
|
+
##### Parameters
|
|
120
|
+
|
|
121
|
+
| Name | Type |
|
|
122
|
+
| :------ | :------ |
|
|
123
|
+
| `err` | `Error` |
|
|
124
|
+
| `stackTraces` | `CallSite`[] |
|
|
125
|
+
|
|
126
|
+
##### Returns
|
|
127
|
+
|
|
128
|
+
`any`
|
|
129
|
+
|
|
130
|
+
#### Inherited from
|
|
131
|
+
|
|
132
|
+
[DatabaseQueryError](DatabaseQueryError.md).[prepareStackTrace](DatabaseQueryError.md#preparestacktrace)
|
|
133
|
+
|
|
134
|
+
#### Defined in
|
|
135
|
+
|
|
136
|
+
node_modules/@types/node/globals.d.ts:11
|
|
137
|
+
|
|
138
|
+
___
|
|
139
|
+
|
|
140
|
+
### stackTraceLimit
|
|
141
|
+
|
|
142
|
+
▪ `Static` **stackTraceLimit**: `number`
|
|
143
|
+
|
|
144
|
+
#### Inherited from
|
|
145
|
+
|
|
146
|
+
[DatabaseQueryError](DatabaseQueryError.md).[stackTraceLimit](DatabaseQueryError.md#stacktracelimit)
|
|
147
|
+
|
|
148
|
+
#### Defined in
|
|
149
|
+
|
|
150
|
+
node_modules/@types/node/globals.d.ts:13
|
|
151
|
+
|
|
152
|
+
## Methods
|
|
153
|
+
|
|
154
|
+
### getCode
|
|
155
|
+
|
|
156
|
+
▸ **getCode**(): `number`
|
|
157
|
+
|
|
158
|
+
#### Returns
|
|
159
|
+
|
|
160
|
+
`number`
|
|
161
|
+
|
|
162
|
+
#### Inherited from
|
|
163
|
+
|
|
164
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getCode](DatabaseQueryError.md#getcode)
|
|
165
|
+
|
|
166
|
+
#### Defined in
|
|
167
|
+
|
|
168
|
+
[src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/d45307d/src/DatabaseQueryError.ts#L36)
|
|
169
|
+
|
|
170
|
+
___
|
|
171
|
+
|
|
172
|
+
### getErrorResponse
|
|
173
|
+
|
|
174
|
+
▸ **getErrorResponse**(): [`IErrorResponse`](../interfaces/IErrorResponse.md)
|
|
175
|
+
|
|
176
|
+
#### Returns
|
|
177
|
+
|
|
178
|
+
[`IErrorResponse`](../interfaces/IErrorResponse.md)
|
|
179
|
+
|
|
180
|
+
#### Inherited from
|
|
181
|
+
|
|
182
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getErrorResponse](DatabaseQueryError.md#geterrorresponse)
|
|
183
|
+
|
|
184
|
+
#### Defined in
|
|
185
|
+
|
|
186
|
+
[src/StormError.ts:76](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L76)
|
|
187
|
+
|
|
188
|
+
___
|
|
189
|
+
|
|
190
|
+
### getExitCode
|
|
191
|
+
|
|
192
|
+
▸ **getExitCode**(): [`ExitCode`](../enums/ExitCode.md)
|
|
193
|
+
|
|
194
|
+
#### Returns
|
|
195
|
+
|
|
196
|
+
[`ExitCode`](../enums/ExitCode.md)
|
|
197
|
+
|
|
198
|
+
#### Inherited from
|
|
199
|
+
|
|
200
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getExitCode](DatabaseQueryError.md#getexitcode)
|
|
201
|
+
|
|
202
|
+
#### Defined in
|
|
203
|
+
|
|
204
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L97)
|
|
205
|
+
|
|
206
|
+
___
|
|
207
|
+
|
|
208
|
+
### getHTTPCode
|
|
209
|
+
|
|
210
|
+
▸ **getHTTPCode**(): [`StatusCode`](../enums/StatusCode.md)
|
|
211
|
+
|
|
212
|
+
#### Returns
|
|
213
|
+
|
|
214
|
+
[`StatusCode`](../enums/StatusCode.md)
|
|
215
|
+
|
|
216
|
+
#### Inherited from
|
|
217
|
+
|
|
218
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getHTTPCode](DatabaseQueryError.md#gethttpcode)
|
|
219
|
+
|
|
220
|
+
#### Defined in
|
|
221
|
+
|
|
222
|
+
[src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/d45307d/src/DatabaseQueryError.ts#L40)
|
|
223
|
+
|
|
224
|
+
___
|
|
225
|
+
|
|
226
|
+
### getLocaleCode
|
|
227
|
+
|
|
228
|
+
▸ **getLocaleCode**(): `string`
|
|
229
|
+
|
|
230
|
+
#### Returns
|
|
231
|
+
|
|
232
|
+
`string`
|
|
233
|
+
|
|
234
|
+
#### Inherited from
|
|
235
|
+
|
|
236
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getLocaleCode](DatabaseQueryError.md#getlocalecode)
|
|
237
|
+
|
|
238
|
+
#### Defined in
|
|
239
|
+
|
|
240
|
+
[src/DatabaseQueryError.ts:44](https://github.com/breautek/storm/blob/d45307d/src/DatabaseQueryError.ts#L44)
|
|
241
|
+
|
|
242
|
+
___
|
|
243
|
+
|
|
244
|
+
### getLocaleParameters
|
|
245
|
+
|
|
246
|
+
▸ **getLocaleParameters**(): `Record`<`string`, `string`\>
|
|
247
|
+
|
|
248
|
+
#### Returns
|
|
249
|
+
|
|
250
|
+
`Record`<`string`, `string`\>
|
|
251
|
+
|
|
252
|
+
#### Inherited from
|
|
253
|
+
|
|
254
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getLocaleParameters](DatabaseQueryError.md#getlocaleparameters)
|
|
255
|
+
|
|
256
|
+
#### Defined in
|
|
257
|
+
|
|
258
|
+
[src/StormError.ts:93](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L93)
|
|
259
|
+
|
|
260
|
+
___
|
|
261
|
+
|
|
262
|
+
### getMessage
|
|
263
|
+
|
|
264
|
+
▸ **getMessage**(): `string`
|
|
265
|
+
|
|
266
|
+
#### Returns
|
|
267
|
+
|
|
268
|
+
`string`
|
|
269
|
+
|
|
270
|
+
#### Inherited from
|
|
271
|
+
|
|
272
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getMessage](DatabaseQueryError.md#getmessage)
|
|
273
|
+
|
|
274
|
+
#### Defined in
|
|
275
|
+
|
|
276
|
+
[src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/d45307d/src/DatabaseQueryError.ts#L32)
|
|
277
|
+
|
|
278
|
+
___
|
|
279
|
+
|
|
280
|
+
### getPrivateDetails
|
|
281
|
+
|
|
282
|
+
▸ **getPrivateDetails**(): `Object`
|
|
283
|
+
|
|
284
|
+
Private details are only logged to the server log.
|
|
285
|
+
They are kept secret from the client.
|
|
286
|
+
|
|
287
|
+
#### Returns
|
|
288
|
+
|
|
289
|
+
`Object`
|
|
290
|
+
|
|
291
|
+
| Name | Type |
|
|
292
|
+
| :------ | :------ |
|
|
293
|
+
| `error` | `any` |
|
|
294
|
+
| `query` | `string` |
|
|
295
|
+
|
|
296
|
+
#### Inherited from
|
|
297
|
+
|
|
298
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getPrivateDetails](DatabaseQueryError.md#getprivatedetails)
|
|
299
|
+
|
|
300
|
+
#### Defined in
|
|
301
|
+
|
|
302
|
+
[src/StormError.ts:68](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L68)
|
|
303
|
+
|
|
304
|
+
___
|
|
305
|
+
|
|
306
|
+
### getPublicDetails
|
|
307
|
+
|
|
308
|
+
▸ **getPublicDetails**(): [`IAdditionalErrorDetails`](../interfaces/IAdditionalErrorDetails.md)
|
|
309
|
+
|
|
310
|
+
Sends details to the client.
|
|
311
|
+
|
|
312
|
+
#### Returns
|
|
313
|
+
|
|
314
|
+
[`IAdditionalErrorDetails`](../interfaces/IAdditionalErrorDetails.md)
|
|
315
|
+
|
|
316
|
+
#### Inherited from
|
|
317
|
+
|
|
318
|
+
[DatabaseQueryError](DatabaseQueryError.md).[getPublicDetails](DatabaseQueryError.md#getpublicdetails)
|
|
319
|
+
|
|
320
|
+
#### Defined in
|
|
321
|
+
|
|
322
|
+
[src/StormError.ts:60](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L60)
|
|
323
|
+
|
|
324
|
+
___
|
|
325
|
+
|
|
326
|
+
### captureStackTrace
|
|
327
|
+
|
|
328
|
+
▸ `Static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
|
|
329
|
+
|
|
330
|
+
Create .stack property on a target object
|
|
331
|
+
|
|
332
|
+
#### Parameters
|
|
333
|
+
|
|
334
|
+
| Name | Type |
|
|
335
|
+
| :------ | :------ |
|
|
336
|
+
| `targetObject` | `object` |
|
|
337
|
+
| `constructorOpt?` | `Function` |
|
|
338
|
+
|
|
339
|
+
#### Returns
|
|
340
|
+
|
|
341
|
+
`void`
|
|
342
|
+
|
|
343
|
+
#### Inherited from
|
|
344
|
+
|
|
345
|
+
[DatabaseQueryError](DatabaseQueryError.md).[captureStackTrace](DatabaseQueryError.md#capturestacktrace)
|
|
346
|
+
|
|
347
|
+
#### Defined in
|
|
348
|
+
|
|
349
|
+
node_modules/@types/node/globals.d.ts:4
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
|
|
48
48
|
#### Defined in
|
|
49
49
|
|
|
50
|
-
[src/ManagedDatabaseConnection.ts:38](https://github.com/breautek/storm/blob/
|
|
50
|
+
[src/ManagedDatabaseConnection.ts:38](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L38)
|
|
51
51
|
|
|
52
52
|
## Methods
|
|
53
53
|
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
|
|
72
72
|
#### Defined in
|
|
73
73
|
|
|
74
|
-
[src/ManagedDatabaseConnection.ts:153](https://github.com/breautek/storm/blob/
|
|
74
|
+
[src/ManagedDatabaseConnection.ts:153](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L153)
|
|
75
75
|
|
|
76
76
|
___
|
|
77
77
|
|
|
@@ -89,7 +89,7 @@ ___
|
|
|
89
89
|
|
|
90
90
|
#### Defined in
|
|
91
91
|
|
|
92
|
-
[src/ManagedDatabaseConnection.ts:190](https://github.com/breautek/storm/blob/
|
|
92
|
+
[src/ManagedDatabaseConnection.ts:190](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L190)
|
|
93
93
|
|
|
94
94
|
___
|
|
95
95
|
|
|
@@ -107,7 +107,7 @@ ___
|
|
|
107
107
|
|
|
108
108
|
#### Defined in
|
|
109
109
|
|
|
110
|
-
[src/ManagedDatabaseConnection.ts:238](https://github.com/breautek/storm/blob/
|
|
110
|
+
[src/ManagedDatabaseConnection.ts:238](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L238)
|
|
111
111
|
|
|
112
112
|
___
|
|
113
113
|
|
|
@@ -125,7 +125,7 @@ ___
|
|
|
125
125
|
|
|
126
126
|
#### Defined in
|
|
127
127
|
|
|
128
|
-
[src/ManagedDatabaseConnection.ts:105](https://github.com/breautek/storm/blob/
|
|
128
|
+
[src/ManagedDatabaseConnection.ts:105](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L105)
|
|
129
129
|
|
|
130
130
|
___
|
|
131
131
|
|
|
@@ -143,7 +143,7 @@ ___
|
|
|
143
143
|
|
|
144
144
|
#### Defined in
|
|
145
145
|
|
|
146
|
-
[src/ManagedDatabaseConnection.ts:130](https://github.com/breautek/storm/blob/
|
|
146
|
+
[src/ManagedDatabaseConnection.ts:130](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L130)
|
|
147
147
|
|
|
148
148
|
___
|
|
149
149
|
|
|
@@ -157,7 +157,7 @@ ___
|
|
|
157
157
|
|
|
158
158
|
#### Defined in
|
|
159
159
|
|
|
160
|
-
[src/ManagedDatabaseConnection.ts:92](https://github.com/breautek/storm/blob/
|
|
160
|
+
[src/ManagedDatabaseConnection.ts:92](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L92)
|
|
161
161
|
|
|
162
162
|
___
|
|
163
163
|
|
|
@@ -175,7 +175,7 @@ ___
|
|
|
175
175
|
|
|
176
176
|
#### Defined in
|
|
177
177
|
|
|
178
|
-
[src/ManagedDatabaseConnection.ts:75](https://github.com/breautek/storm/blob/
|
|
178
|
+
[src/ManagedDatabaseConnection.ts:75](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L75)
|
|
179
179
|
|
|
180
180
|
___
|
|
181
181
|
|
|
@@ -189,7 +189,7 @@ ___
|
|
|
189
189
|
|
|
190
190
|
#### Defined in
|
|
191
191
|
|
|
192
|
-
[src/ManagedDatabaseConnection.ts:88](https://github.com/breautek/storm/blob/
|
|
192
|
+
[src/ManagedDatabaseConnection.ts:88](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L88)
|
|
193
193
|
|
|
194
194
|
___
|
|
195
195
|
|
|
@@ -207,7 +207,7 @@ ___
|
|
|
207
207
|
|
|
208
208
|
#### Defined in
|
|
209
209
|
|
|
210
|
-
[src/ManagedDatabaseConnection.ts:114](https://github.com/breautek/storm/blob/
|
|
210
|
+
[src/ManagedDatabaseConnection.ts:114](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L114)
|
|
211
211
|
|
|
212
212
|
___
|
|
213
213
|
|
|
@@ -225,7 +225,7 @@ ___
|
|
|
225
225
|
|
|
226
226
|
#### Defined in
|
|
227
227
|
|
|
228
|
-
[src/ManagedDatabaseConnection.ts:181](https://github.com/breautek/storm/blob/
|
|
228
|
+
[src/ManagedDatabaseConnection.ts:181](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L181)
|
|
229
229
|
|
|
230
230
|
___
|
|
231
231
|
|
|
@@ -239,7 +239,7 @@ ___
|
|
|
239
239
|
|
|
240
240
|
#### Defined in
|
|
241
241
|
|
|
242
|
-
[src/ManagedDatabaseConnection.ts:84](https://github.com/breautek/storm/blob/
|
|
242
|
+
[src/ManagedDatabaseConnection.ts:84](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L84)
|
|
243
243
|
|
|
244
244
|
___
|
|
245
245
|
|
|
@@ -264,7 +264,7 @@ ___
|
|
|
264
264
|
|
|
265
265
|
#### Defined in
|
|
266
266
|
|
|
267
|
-
[src/ManagedDatabaseConnection.ts:140](https://github.com/breautek/storm/blob/
|
|
267
|
+
[src/ManagedDatabaseConnection.ts:140](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L140)
|
|
268
268
|
|
|
269
269
|
___
|
|
270
270
|
|
|
@@ -282,7 +282,7 @@ ___
|
|
|
282
282
|
|
|
283
283
|
#### Defined in
|
|
284
284
|
|
|
285
|
-
[src/ManagedDatabaseConnection.ts:203](https://github.com/breautek/storm/blob/
|
|
285
|
+
[src/ManagedDatabaseConnection.ts:203](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L203)
|
|
286
286
|
|
|
287
287
|
___
|
|
288
288
|
|
|
@@ -302,7 +302,7 @@ ___
|
|
|
302
302
|
|
|
303
303
|
#### Defined in
|
|
304
304
|
|
|
305
|
-
[src/ManagedDatabaseConnection.ts:45](https://github.com/breautek/storm/blob/
|
|
305
|
+
[src/ManagedDatabaseConnection.ts:45](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L45)
|
|
306
306
|
|
|
307
307
|
___
|
|
308
308
|
|
|
@@ -326,7 +326,7 @@ ___
|
|
|
326
326
|
|
|
327
327
|
#### Defined in
|
|
328
328
|
|
|
329
|
-
[src/ManagedDatabaseConnection.ts:96](https://github.com/breautek/storm/blob/
|
|
329
|
+
[src/ManagedDatabaseConnection.ts:96](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L96)
|
|
330
330
|
|
|
331
331
|
___
|
|
332
332
|
|
|
@@ -350,7 +350,7 @@ ___
|
|
|
350
350
|
|
|
351
351
|
#### Defined in
|
|
352
352
|
|
|
353
|
-
[src/ManagedDatabaseConnection.ts:124](https://github.com/breautek/storm/blob/
|
|
353
|
+
[src/ManagedDatabaseConnection.ts:124](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L124)
|
|
354
354
|
|
|
355
355
|
___
|
|
356
356
|
|
|
@@ -374,7 +374,7 @@ ___
|
|
|
374
374
|
|
|
375
375
|
#### Defined in
|
|
376
376
|
|
|
377
|
-
[src/ManagedDatabaseConnection.ts:168](https://github.com/breautek/storm/blob/
|
|
377
|
+
[src/ManagedDatabaseConnection.ts:168](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L168)
|
|
378
378
|
|
|
379
379
|
___
|
|
380
380
|
|
|
@@ -400,4 +400,4 @@ ___
|
|
|
400
400
|
|
|
401
401
|
#### Defined in
|
|
402
402
|
|
|
403
|
-
[src/ManagedDatabaseConnection.ts:149](https://github.com/breautek/storm/blob/
|
|
403
|
+
[src/ManagedDatabaseConnection.ts:149](https://github.com/breautek/storm/blob/d45307d/src/ManagedDatabaseConnection.ts#L149)
|
|
@@ -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/d45307d/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/d45307d/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/d45307d/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/d45307d/src/MissingConfigError.ts#L27)
|
|
57
57
|
|
|
58
58
|
## Properties
|
|
59
59
|
|
|
@@ -162,7 +162,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
162
162
|
|
|
163
163
|
#### Defined in
|
|
164
164
|
|
|
165
|
-
[src/MissingConfigError.ts:37](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/MissingConfigError.ts:37](https://github.com/breautek/storm/blob/d45307d/src/MissingConfigError.ts#L37)
|
|
166
166
|
|
|
167
167
|
___
|
|
168
168
|
|
|
@@ -180,7 +180,7 @@ ___
|
|
|
180
180
|
|
|
181
181
|
#### Defined in
|
|
182
182
|
|
|
183
|
-
[src/StormError.ts:76](https://github.com/breautek/storm/blob/
|
|
183
|
+
[src/StormError.ts:76](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L76)
|
|
184
184
|
|
|
185
185
|
___
|
|
186
186
|
|
|
@@ -198,7 +198,7 @@ ___
|
|
|
198
198
|
|
|
199
199
|
#### Defined in
|
|
200
200
|
|
|
201
|
-
[src/MissingConfigError.ts:45](https://github.com/breautek/storm/blob/
|
|
201
|
+
[src/MissingConfigError.ts:45](https://github.com/breautek/storm/blob/d45307d/src/MissingConfigError.ts#L45)
|
|
202
202
|
|
|
203
203
|
___
|
|
204
204
|
|
|
@@ -216,7 +216,7 @@ ___
|
|
|
216
216
|
|
|
217
217
|
#### Defined in
|
|
218
218
|
|
|
219
|
-
[src/MissingConfigError.ts:41](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/MissingConfigError.ts:41](https://github.com/breautek/storm/blob/d45307d/src/MissingConfigError.ts#L41)
|
|
220
220
|
|
|
221
221
|
___
|
|
222
222
|
|
|
@@ -234,7 +234,7 @@ ___
|
|
|
234
234
|
|
|
235
235
|
#### Defined in
|
|
236
236
|
|
|
237
|
-
[src/MissingConfigError.ts:49](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/MissingConfigError.ts:49](https://github.com/breautek/storm/blob/d45307d/src/MissingConfigError.ts#L49)
|
|
238
238
|
|
|
239
239
|
___
|
|
240
240
|
|
|
@@ -252,7 +252,7 @@ ___
|
|
|
252
252
|
|
|
253
253
|
#### Defined in
|
|
254
254
|
|
|
255
|
-
[src/MissingConfigError.ts:53](https://github.com/breautek/storm/blob/
|
|
255
|
+
[src/MissingConfigError.ts:53](https://github.com/breautek/storm/blob/d45307d/src/MissingConfigError.ts#L53)
|
|
256
256
|
|
|
257
257
|
___
|
|
258
258
|
|
|
@@ -270,7 +270,7 @@ ___
|
|
|
270
270
|
|
|
271
271
|
#### Defined in
|
|
272
272
|
|
|
273
|
-
[src/MissingConfigError.ts:33](https://github.com/breautek/storm/blob/
|
|
273
|
+
[src/MissingConfigError.ts:33](https://github.com/breautek/storm/blob/d45307d/src/MissingConfigError.ts#L33)
|
|
274
274
|
|
|
275
275
|
___
|
|
276
276
|
|
|
@@ -291,7 +291,7 @@ They are kept secret from the client.
|
|
|
291
291
|
|
|
292
292
|
#### Defined in
|
|
293
293
|
|
|
294
|
-
[src/StormError.ts:68](https://github.com/breautek/storm/blob/
|
|
294
|
+
[src/StormError.ts:68](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L68)
|
|
295
295
|
|
|
296
296
|
___
|
|
297
297
|
|
|
@@ -311,7 +311,7 @@ Sends details to the client.
|
|
|
311
311
|
|
|
312
312
|
#### Defined in
|
|
313
313
|
|
|
314
|
-
[src/StormError.ts:60](https://github.com/breautek/storm/blob/
|
|
314
|
+
[src/StormError.ts:60](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L60)
|
|
315
315
|
|
|
316
316
|
___
|
|
317
317
|
|