@breautek/storm 4.6.2 → 5.0.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 +38 -0
- package/docs/README.md +7 -5
- package/docs/classes/Application.md +53 -53
- 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 +16 -16
- package/docs/classes/DeadLockError.md +16 -16
- package/docs/classes/DiskSpaceError.md +16 -16
- package/docs/classes/DropTemporaryTableQuery.md +10 -10
- package/docs/classes/DumpStream.md +1 -1
- package/docs/classes/DuplicateEntryError.md +16 -16
- package/docs/classes/EntityNotFoundError.md +16 -16
- package/docs/classes/ExpiredTokenError.md +16 -16
- package/docs/classes/Handler.md +13 -34
- package/docs/classes/InternalError.md +16 -16
- package/docs/classes/InvalidCredentialsError.md +16 -16
- package/docs/classes/InvalidValueError.md +16 -16
- package/docs/classes/LineString.md +4 -4
- package/docs/classes/ManagedDatabaseConnection.md +19 -19
- package/docs/classes/Middleware.md +3 -3
- package/docs/classes/MissingConfigError.md +16 -16
- package/docs/classes/MissingParameterError.md +16 -16
- package/docs/classes/MySQLConnection.md +22 -22
- package/docs/classes/MySQLDatabase.md +13 -13
- package/docs/classes/NotImplementedError.md +16 -16
- 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 +16 -16
- 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 +16 -16
- 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 +16 -16
- 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/docs/interfaces/formidable.Part.md +17 -17
- 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 +2 -3
- package/lib/Handler.js +0 -2
- package/lib/Handler.js.map +1 -1
- package/lib/IDatabaseConnection.d.ts +3 -3
- package/lib/IDeleteQueryResult.d.ts +1 -1
- package/lib/IQueryable.d.ts +8 -0
- package/lib/IQueryable.js +18 -0
- package/lib/IQueryable.js.map +1 -0
- package/lib/MySQLConnection.js +15 -4
- package/lib/MySQLConnection.js.map +1 -1
- package/lib/Query.d.ts +3 -2
- package/lib/Query.js.map +1 -1
- package/lib/Response.d.ts +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/TCoordinate.d.ts +1 -1
- package/lib/Transaction.d.ts +24 -0
- package/lib/Transaction.js +82 -0
- package/lib/Transaction.js.map +1 -0
- package/lib/api.d.ts +2 -0
- package/lib/api.js +4 -2
- package/lib/api.js.map +1 -1
- package/package.json +22 -22
- 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/MySQLConnection.ts +15 -4
- package/src/Query.ts +3 -2
- package/src/ServiceResponse.ts +5 -0
- package/src/SetSessionVariableQuery.ts +2 -2
- package/src/Transaction.ts +97 -0
- package/src/api.ts +2 -0
package/docs/classes/Database.md
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
|
|
51
51
|
#### Defined in
|
|
52
52
|
|
|
53
|
-
[src/Database.ts:27](https://github.com/breautek/storm/blob/
|
|
53
|
+
[src/Database.ts:27](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L27)
|
|
54
54
|
|
|
55
55
|
## Methods
|
|
56
56
|
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
|
|
72
72
|
#### Defined in
|
|
73
73
|
|
|
74
|
-
[src/Database.ts:82](https://github.com/breautek/storm/blob/
|
|
74
|
+
[src/Database.ts:82](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L82)
|
|
75
75
|
|
|
76
76
|
___
|
|
77
77
|
|
|
@@ -85,7 +85,7 @@ ___
|
|
|
85
85
|
|
|
86
86
|
#### Defined in
|
|
87
87
|
|
|
88
|
-
[src/Database.ts:81](https://github.com/breautek/storm/blob/
|
|
88
|
+
[src/Database.ts:81](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L81)
|
|
89
89
|
|
|
90
90
|
___
|
|
91
91
|
|
|
@@ -106,7 +106,7 @@ ___
|
|
|
106
106
|
|
|
107
107
|
#### Defined in
|
|
108
108
|
|
|
109
|
-
[src/Database.ts:84](https://github.com/breautek/storm/blob/
|
|
109
|
+
[src/Database.ts:84](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L84)
|
|
110
110
|
|
|
111
111
|
___
|
|
112
112
|
|
|
@@ -126,7 +126,7 @@ ___
|
|
|
126
126
|
|
|
127
127
|
#### Defined in
|
|
128
128
|
|
|
129
|
-
[src/Database.ts:83](https://github.com/breautek/storm/blob/
|
|
129
|
+
[src/Database.ts:83](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L83)
|
|
130
130
|
|
|
131
131
|
___
|
|
132
132
|
|
|
@@ -146,7 +146,7 @@ ___
|
|
|
146
146
|
|
|
147
147
|
#### Defined in
|
|
148
148
|
|
|
149
|
-
[src/Database.ts:31](https://github.com/breautek/storm/blob/
|
|
149
|
+
[src/Database.ts:31](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L31)
|
|
150
150
|
|
|
151
151
|
___
|
|
152
152
|
|
|
@@ -167,7 +167,7 @@ ___
|
|
|
167
167
|
|
|
168
168
|
#### Defined in
|
|
169
169
|
|
|
170
|
-
[src/Database.ts:45](https://github.com/breautek/storm/blob/
|
|
170
|
+
[src/Database.ts:45](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L45)
|
|
171
171
|
|
|
172
172
|
___
|
|
173
173
|
|
|
@@ -181,7 +181,7 @@ ___
|
|
|
181
181
|
|
|
182
182
|
#### Defined in
|
|
183
183
|
|
|
184
|
-
[src/Database.ts:77](https://github.com/breautek/storm/blob/
|
|
184
|
+
[src/Database.ts:77](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L77)
|
|
185
185
|
|
|
186
186
|
___
|
|
187
187
|
|
|
@@ -201,7 +201,7 @@ ___
|
|
|
201
201
|
|
|
202
202
|
#### Defined in
|
|
203
203
|
|
|
204
|
-
[src/Database.ts:85](https://github.com/breautek/storm/blob/
|
|
204
|
+
[src/Database.ts:85](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L85)
|
|
205
205
|
|
|
206
206
|
___
|
|
207
207
|
|
|
@@ -222,7 +222,7 @@ ___
|
|
|
222
222
|
|
|
223
223
|
#### Defined in
|
|
224
224
|
|
|
225
|
-
[src/Database.ts:64](https://github.com/breautek/storm/blob/
|
|
225
|
+
[src/Database.ts:64](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L64)
|
|
226
226
|
|
|
227
227
|
___
|
|
228
228
|
|
|
@@ -236,7 +236,7 @@ ___
|
|
|
236
236
|
|
|
237
237
|
#### Defined in
|
|
238
238
|
|
|
239
|
-
[src/Database.ts:40](https://github.com/breautek/storm/blob/
|
|
239
|
+
[src/Database.ts:40](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L40)
|
|
240
240
|
|
|
241
241
|
___
|
|
242
242
|
|
|
@@ -256,4 +256,4 @@ ___
|
|
|
256
256
|
|
|
257
257
|
#### Defined in
|
|
258
258
|
|
|
259
|
-
[src/Database.ts:54](https://github.com/breautek/storm/blob/
|
|
259
|
+
[src/Database.ts:54](https://github.com/breautek/storm/blob/3748147/src/Database.ts#L54)
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
#### Defined in
|
|
44
44
|
|
|
45
|
-
[src/DatabaseCastObject.ts:28](https://github.com/breautek/storm/blob/
|
|
45
|
+
[src/DatabaseCastObject.ts:28](https://github.com/breautek/storm/blob/3748147/src/DatabaseCastObject.ts#L28)
|
|
46
46
|
|
|
47
47
|
___
|
|
48
48
|
|
|
@@ -62,7 +62,7 @@ ___
|
|
|
62
62
|
|
|
63
63
|
#### Defined in
|
|
64
64
|
|
|
65
|
-
[src/DatabaseCastObject.ts:24](https://github.com/breautek/storm/blob/
|
|
65
|
+
[src/DatabaseCastObject.ts:24](https://github.com/breautek/storm/blob/3748147/src/DatabaseCastObject.ts#L24)
|
|
66
66
|
|
|
67
67
|
___
|
|
68
68
|
|
|
@@ -76,4 +76,4 @@ ___
|
|
|
76
76
|
|
|
77
77
|
#### Defined in
|
|
78
78
|
|
|
79
|
-
[src/DatabaseCastObject.ts:20](https://github.com/breautek/storm/blob/
|
|
79
|
+
[src/DatabaseCastObject.ts:20](https://github.com/breautek/storm/blob/3748147/src/DatabaseCastObject.ts#L20)
|
|
@@ -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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/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/3748147/src/DatabaseConnection.ts#L201)
|
|
386
386
|
|
|
387
387
|
___
|
|
388
388
|
|
|
@@ -404,7 +404,7 @@ Queries the database for a dataset.
|
|
|
404
404
|
|
|
405
405
|
| Name | Type | Description |
|
|
406
406
|
| :------ | :------ | :------ |
|
|
407
|
-
| `query` | [`
|
|
407
|
+
| `query` | [`IQueryable`](../interfaces/IQueryable.md)<`TQueryResult`\> | The database query |
|
|
408
408
|
|
|
409
409
|
#### Returns
|
|
410
410
|
|
|
@@ -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/3748147/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/3748147/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/3748147/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/3748147/src/DatabaseConnection.ts#L109)
|
|
498
498
|
|
|
499
499
|
___
|
|
500
500
|
|
|
@@ -526,7 +526,7 @@ Promise<void>
|
|
|
526
526
|
|
|
527
527
|
#### Defined in
|
|
528
528
|
|
|
529
|
-
[src/DatabaseConnection.ts:193](https://github.com/breautek/storm/blob/
|
|
529
|
+
[src/DatabaseConnection.ts:193](https://github.com/breautek/storm/blob/3748147/src/DatabaseConnection.ts#L193)
|
|
530
530
|
|
|
531
531
|
___
|
|
532
532
|
|
|
@@ -538,7 +538,7 @@ ___
|
|
|
538
538
|
|
|
539
539
|
| Name | Type | Description |
|
|
540
540
|
| :------ | :------ | :------ |
|
|
541
|
-
| `query` | [`
|
|
541
|
+
| `query` | [`IQueryable`](../interfaces/IQueryable.md)<`any`\> | The database query |
|
|
542
542
|
| `streamOptions?` | `any` | Stream options |
|
|
543
543
|
|
|
544
544
|
#### Returns
|
|
@@ -553,4 +553,4 @@ Readable
|
|
|
553
553
|
|
|
554
554
|
#### Defined in
|
|
555
555
|
|
|
556
|
-
[src/DatabaseConnection.ts:152](https://github.com/breautek/storm/blob/
|
|
556
|
+
[src/DatabaseConnection.ts:152](https://github.com/breautek/storm/blob/3748147/src/DatabaseConnection.ts#L152)
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
|
|
57
57
|
#### Defined in
|
|
58
58
|
|
|
59
|
-
[src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/
|
|
59
|
+
[src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L25)
|
|
60
60
|
|
|
61
61
|
## Properties
|
|
62
62
|
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
|
|
71
71
|
#### Defined in
|
|
72
72
|
|
|
73
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
73
|
+
node_modules/typescript/lib/lib.es5.d.ts:1054
|
|
74
74
|
|
|
75
75
|
___
|
|
76
76
|
|
|
@@ -84,7 +84,7 @@ ___
|
|
|
84
84
|
|
|
85
85
|
#### Defined in
|
|
86
86
|
|
|
87
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
87
|
+
node_modules/typescript/lib/lib.es5.d.ts:1053
|
|
88
88
|
|
|
89
89
|
___
|
|
90
90
|
|
|
@@ -98,7 +98,7 @@ ___
|
|
|
98
98
|
|
|
99
99
|
#### Defined in
|
|
100
100
|
|
|
101
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
101
|
+
node_modules/typescript/lib/lib.es5.d.ts:1055
|
|
102
102
|
|
|
103
103
|
___
|
|
104
104
|
|
|
@@ -133,7 +133,7 @@ https://v8.dev/docs/stack-trace-api#customizing-stack-traces
|
|
|
133
133
|
|
|
134
134
|
#### Defined in
|
|
135
135
|
|
|
136
|
-
node_modules/@types/node/
|
|
136
|
+
node_modules/@types/node/globals.d.ts:11
|
|
137
137
|
|
|
138
138
|
___
|
|
139
139
|
|
|
@@ -147,7 +147,7 @@ ___
|
|
|
147
147
|
|
|
148
148
|
#### Defined in
|
|
149
149
|
|
|
150
|
-
node_modules/@types/node/
|
|
150
|
+
node_modules/@types/node/globals.d.ts:13
|
|
151
151
|
|
|
152
152
|
## Methods
|
|
153
153
|
|
|
@@ -165,7 +165,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
|
|
|
165
165
|
|
|
166
166
|
#### Defined in
|
|
167
167
|
|
|
168
|
-
[src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/
|
|
168
|
+
[src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L36)
|
|
169
169
|
|
|
170
170
|
___
|
|
171
171
|
|
|
@@ -183,7 +183,7 @@ ___
|
|
|
183
183
|
|
|
184
184
|
#### Defined in
|
|
185
185
|
|
|
186
|
-
[src/StormError.ts:76](https://github.com/breautek/storm/blob/
|
|
186
|
+
[src/StormError.ts:76](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L76)
|
|
187
187
|
|
|
188
188
|
___
|
|
189
189
|
|
|
@@ -201,7 +201,7 @@ ___
|
|
|
201
201
|
|
|
202
202
|
#### Defined in
|
|
203
203
|
|
|
204
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/
|
|
204
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L97)
|
|
205
205
|
|
|
206
206
|
___
|
|
207
207
|
|
|
@@ -219,7 +219,7 @@ ___
|
|
|
219
219
|
|
|
220
220
|
#### Defined in
|
|
221
221
|
|
|
222
|
-
[src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/
|
|
222
|
+
[src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L40)
|
|
223
223
|
|
|
224
224
|
___
|
|
225
225
|
|
|
@@ -237,7 +237,7 @@ ___
|
|
|
237
237
|
|
|
238
238
|
#### Defined in
|
|
239
239
|
|
|
240
|
-
[src/DatabaseQueryError.ts:44](https://github.com/breautek/storm/blob/
|
|
240
|
+
[src/DatabaseQueryError.ts:44](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L44)
|
|
241
241
|
|
|
242
242
|
___
|
|
243
243
|
|
|
@@ -255,7 +255,7 @@ ___
|
|
|
255
255
|
|
|
256
256
|
#### Defined in
|
|
257
257
|
|
|
258
|
-
[src/StormError.ts:93](https://github.com/breautek/storm/blob/
|
|
258
|
+
[src/StormError.ts:93](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L93)
|
|
259
259
|
|
|
260
260
|
___
|
|
261
261
|
|
|
@@ -273,7 +273,7 @@ ___
|
|
|
273
273
|
|
|
274
274
|
#### Defined in
|
|
275
275
|
|
|
276
|
-
[src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/
|
|
276
|
+
[src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L32)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|
|
@@ -299,7 +299,7 @@ They are kept secret from the client.
|
|
|
299
299
|
|
|
300
300
|
#### Defined in
|
|
301
301
|
|
|
302
|
-
[src/StormError.ts:68](https://github.com/breautek/storm/blob/
|
|
302
|
+
[src/StormError.ts:68](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L68)
|
|
303
303
|
|
|
304
304
|
___
|
|
305
305
|
|
|
@@ -319,7 +319,7 @@ Sends details to the client.
|
|
|
319
319
|
|
|
320
320
|
#### Defined in
|
|
321
321
|
|
|
322
|
-
[src/StormError.ts:60](https://github.com/breautek/storm/blob/
|
|
322
|
+
[src/StormError.ts:60](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L60)
|
|
323
323
|
|
|
324
324
|
___
|
|
325
325
|
|
|
@@ -346,4 +346,4 @@ Create .stack property on a target object
|
|
|
346
346
|
|
|
347
347
|
#### Defined in
|
|
348
348
|
|
|
349
|
-
node_modules/@types/node/
|
|
349
|
+
node_modules/@types/node/globals.d.ts:4
|
|
@@ -56,7 +56,7 @@ DeadLockError is a DatabaseQueryError but is subclasses for typing purposes.
|
|
|
56
56
|
|
|
57
57
|
#### Defined in
|
|
58
58
|
|
|
59
|
-
[src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/
|
|
59
|
+
[src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L25)
|
|
60
60
|
|
|
61
61
|
## Properties
|
|
62
62
|
|
|
@@ -70,7 +70,7 @@ DeadLockError is a DatabaseQueryError but is subclasses for typing purposes.
|
|
|
70
70
|
|
|
71
71
|
#### Defined in
|
|
72
72
|
|
|
73
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
73
|
+
node_modules/typescript/lib/lib.es5.d.ts:1054
|
|
74
74
|
|
|
75
75
|
___
|
|
76
76
|
|
|
@@ -84,7 +84,7 @@ ___
|
|
|
84
84
|
|
|
85
85
|
#### Defined in
|
|
86
86
|
|
|
87
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
87
|
+
node_modules/typescript/lib/lib.es5.d.ts:1053
|
|
88
88
|
|
|
89
89
|
___
|
|
90
90
|
|
|
@@ -98,7 +98,7 @@ ___
|
|
|
98
98
|
|
|
99
99
|
#### Defined in
|
|
100
100
|
|
|
101
|
-
node_modules/typescript/lib/lib.es5.d.ts:
|
|
101
|
+
node_modules/typescript/lib/lib.es5.d.ts:1055
|
|
102
102
|
|
|
103
103
|
___
|
|
104
104
|
|
|
@@ -133,7 +133,7 @@ https://v8.dev/docs/stack-trace-api#customizing-stack-traces
|
|
|
133
133
|
|
|
134
134
|
#### Defined in
|
|
135
135
|
|
|
136
|
-
node_modules/@types/node/
|
|
136
|
+
node_modules/@types/node/globals.d.ts:11
|
|
137
137
|
|
|
138
138
|
___
|
|
139
139
|
|
|
@@ -147,7 +147,7 @@ ___
|
|
|
147
147
|
|
|
148
148
|
#### Defined in
|
|
149
149
|
|
|
150
|
-
node_modules/@types/node/
|
|
150
|
+
node_modules/@types/node/globals.d.ts:13
|
|
151
151
|
|
|
152
152
|
## Methods
|
|
153
153
|
|
|
@@ -165,7 +165,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
|
|
|
165
165
|
|
|
166
166
|
#### Defined in
|
|
167
167
|
|
|
168
|
-
[src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/
|
|
168
|
+
[src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L36)
|
|
169
169
|
|
|
170
170
|
___
|
|
171
171
|
|
|
@@ -183,7 +183,7 @@ ___
|
|
|
183
183
|
|
|
184
184
|
#### Defined in
|
|
185
185
|
|
|
186
|
-
[src/StormError.ts:76](https://github.com/breautek/storm/blob/
|
|
186
|
+
[src/StormError.ts:76](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L76)
|
|
187
187
|
|
|
188
188
|
___
|
|
189
189
|
|
|
@@ -201,7 +201,7 @@ ___
|
|
|
201
201
|
|
|
202
202
|
#### Defined in
|
|
203
203
|
|
|
204
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/
|
|
204
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L97)
|
|
205
205
|
|
|
206
206
|
___
|
|
207
207
|
|
|
@@ -219,7 +219,7 @@ ___
|
|
|
219
219
|
|
|
220
220
|
#### Defined in
|
|
221
221
|
|
|
222
|
-
[src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/
|
|
222
|
+
[src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L40)
|
|
223
223
|
|
|
224
224
|
___
|
|
225
225
|
|
|
@@ -237,7 +237,7 @@ ___
|
|
|
237
237
|
|
|
238
238
|
#### Defined in
|
|
239
239
|
|
|
240
|
-
[src/DatabaseQueryError.ts:44](https://github.com/breautek/storm/blob/
|
|
240
|
+
[src/DatabaseQueryError.ts:44](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L44)
|
|
241
241
|
|
|
242
242
|
___
|
|
243
243
|
|
|
@@ -255,7 +255,7 @@ ___
|
|
|
255
255
|
|
|
256
256
|
#### Defined in
|
|
257
257
|
|
|
258
|
-
[src/StormError.ts:93](https://github.com/breautek/storm/blob/
|
|
258
|
+
[src/StormError.ts:93](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L93)
|
|
259
259
|
|
|
260
260
|
___
|
|
261
261
|
|
|
@@ -273,7 +273,7 @@ ___
|
|
|
273
273
|
|
|
274
274
|
#### Defined in
|
|
275
275
|
|
|
276
|
-
[src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/
|
|
276
|
+
[src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/3748147/src/DatabaseQueryError.ts#L32)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|
|
@@ -299,7 +299,7 @@ They are kept secret from the client.
|
|
|
299
299
|
|
|
300
300
|
#### Defined in
|
|
301
301
|
|
|
302
|
-
[src/StormError.ts:68](https://github.com/breautek/storm/blob/
|
|
302
|
+
[src/StormError.ts:68](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L68)
|
|
303
303
|
|
|
304
304
|
___
|
|
305
305
|
|
|
@@ -319,7 +319,7 @@ Sends details to the client.
|
|
|
319
319
|
|
|
320
320
|
#### Defined in
|
|
321
321
|
|
|
322
|
-
[src/StormError.ts:60](https://github.com/breautek/storm/blob/
|
|
322
|
+
[src/StormError.ts:60](https://github.com/breautek/storm/blob/3748147/src/StormError.ts#L60)
|
|
323
323
|
|
|
324
324
|
___
|
|
325
325
|
|
|
@@ -346,4 +346,4 @@ Create .stack property on a target object
|
|
|
346
346
|
|
|
347
347
|
#### Defined in
|
|
348
348
|
|
|
349
|
-
node_modules/@types/node/
|
|
349
|
+
node_modules/@types/node/globals.d.ts:4
|