@breautek/storm 3.1.1 → 3.3.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 +28 -0
- package/docs/classes/Application.Application-1.md +76 -24
- package/docs/classes/BackendAuthenticationMiddleware.BackendAuthenticationMiddleware-1.md +3 -4
- 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 +40 -10
- 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 +49 -11
- package/docs/classes/Query.Query-1.md +8 -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/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/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/instance.md +2 -2
- package/lib/Application.d.ts +4 -0
- package/lib/Application.js +12 -1
- package/lib/Application.js.map +1 -1
- package/lib/BackendAuthenticationMiddleware.d.ts +1 -2
- package/lib/BackendAuthenticationMiddleware.js +1 -1
- package/lib/BackendAuthenticationMiddleware.js.map +1 -1
- package/lib/ConfigLoader.js +1 -1
- package/lib/ConfigLoader.js.map +1 -1
- package/lib/Database.d.ts +2 -0
- package/lib/Database.js +3 -0
- package/lib/Database.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/MySQLDatabase.d.ts +1 -0
- package/lib/MySQLDatabase.js +11 -0
- package/lib/MySQLDatabase.js.map +1 -1
- package/package.json +17 -17
- package/src/Application.ts +15 -1
- package/src/BackendAuthenticationMiddleware.ts +1 -2
- package/src/ConfigLoader.ts +1 -1
- package/src/Database.ts +5 -0
- package/src/Handler.ts +4 -0
- package/src/MySQLDatabase.ts +13 -0
- package/src/defs/merge-change.d.ts +1 -1
|
@@ -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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/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/621aeec/src/DatabaseConnection.ts#L201)
|
|
386
386
|
|
|
387
387
|
___
|
|
388
388
|
|
|
@@ -418,7 +418,7 @@ Promise<TQueryResult>
|
|
|
418
418
|
|
|
419
419
|
#### Defined in
|
|
420
420
|
|
|
421
|
-
[src/DatabaseConnection.ts:132](https://github.com/breautek/storm/blob/
|
|
421
|
+
[src/DatabaseConnection.ts:132](https://github.com/breautek/storm/blob/621aeec/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/621aeec/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/621aeec/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/621aeec/src/DatabaseConnection.ts#L109)
|
|
498
498
|
|
|
499
499
|
___
|
|
500
500
|
|
|
@@ -520,7 +520,7 @@ Promise<void>
|
|
|
520
520
|
|
|
521
521
|
#### Defined in
|
|
522
522
|
|
|
523
|
-
[src/DatabaseConnection.ts:193](https://github.com/breautek/storm/blob/
|
|
523
|
+
[src/DatabaseConnection.ts:193](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L193)
|
|
524
524
|
|
|
525
525
|
___
|
|
526
526
|
|
|
@@ -547,4 +547,4 @@ Readable
|
|
|
547
547
|
|
|
548
548
|
#### Defined in
|
|
549
549
|
|
|
550
|
-
[src/DatabaseConnection.ts:152](https://github.com/breautek/storm/blob/
|
|
550
|
+
[src/DatabaseConnection.ts:152](https://github.com/breautek/storm/blob/621aeec/src/DatabaseConnection.ts#L152)
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
|
|
55
55
|
#### Defined in
|
|
56
56
|
|
|
57
|
-
[src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/
|
|
57
|
+
[src/DatabaseQueryError.ts:25](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L25)
|
|
58
58
|
|
|
59
59
|
## Properties
|
|
60
60
|
|
|
@@ -161,7 +161,7 @@ node_modules/@types/node/globals.d.ts:13
|
|
|
161
161
|
|
|
162
162
|
#### Defined in
|
|
163
163
|
|
|
164
|
-
[src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/
|
|
164
|
+
[src/DatabaseQueryError.ts:36](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L36)
|
|
165
165
|
|
|
166
166
|
___
|
|
167
167
|
|
|
@@ -179,7 +179,7 @@ ___
|
|
|
179
179
|
|
|
180
180
|
#### Defined in
|
|
181
181
|
|
|
182
|
-
[src/StormError.ts:70](https://github.com/breautek/storm/blob/
|
|
182
|
+
[src/StormError.ts:70](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L70)
|
|
183
183
|
|
|
184
184
|
___
|
|
185
185
|
|
|
@@ -197,7 +197,7 @@ ___
|
|
|
197
197
|
|
|
198
198
|
#### Defined in
|
|
199
199
|
|
|
200
|
-
[src/StormError.ts:79](https://github.com/breautek/storm/blob/
|
|
200
|
+
[src/StormError.ts:79](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L79)
|
|
201
201
|
|
|
202
202
|
___
|
|
203
203
|
|
|
@@ -215,7 +215,7 @@ ___
|
|
|
215
215
|
|
|
216
216
|
#### Defined in
|
|
217
217
|
|
|
218
|
-
[src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/
|
|
218
|
+
[src/DatabaseQueryError.ts:40](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L40)
|
|
219
219
|
|
|
220
220
|
___
|
|
221
221
|
|
|
@@ -233,7 +233,7 @@ ___
|
|
|
233
233
|
|
|
234
234
|
#### Defined in
|
|
235
235
|
|
|
236
|
-
[src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/
|
|
236
|
+
[src/DatabaseQueryError.ts:32](https://github.com/breautek/storm/blob/621aeec/src/DatabaseQueryError.ts#L32)
|
|
237
237
|
|
|
238
238
|
___
|
|
239
239
|
|
|
@@ -259,7 +259,7 @@ They are kept secret from the client.
|
|
|
259
259
|
|
|
260
260
|
#### Defined in
|
|
261
261
|
|
|
262
|
-
[src/StormError.ts:62](https://github.com/breautek/storm/blob/
|
|
262
|
+
[src/StormError.ts:62](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L62)
|
|
263
263
|
|
|
264
264
|
___
|
|
265
265
|
|
|
@@ -279,7 +279,7 @@ Sends details to the client.
|
|
|
279
279
|
|
|
280
280
|
#### Defined in
|
|
281
281
|
|
|
282
|
-
[src/StormError.ts:54](https://github.com/breautek/storm/blob/
|
|
282
|
+
[src/StormError.ts:54](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L54)
|
|
283
283
|
|
|
284
284
|
___
|
|
285
285
|
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
#### Defined in
|
|
55
55
|
|
|
56
|
-
[src/DiskSpaceError.ts:22](https://github.com/breautek/storm/blob/
|
|
56
|
+
[src/DiskSpaceError.ts:22](https://github.com/breautek/storm/blob/621aeec/src/DiskSpaceError.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/DiskSpaceError.ts:32](https://github.com/breautek/storm/blob/
|
|
163
|
+
[src/DiskSpaceError.ts:32](https://github.com/breautek/storm/blob/621aeec/src/DiskSpaceError.ts#L32)
|
|
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/621aeec/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/621aeec/src/StormError.ts#L79)
|
|
200
200
|
|
|
201
201
|
___
|
|
202
202
|
|
|
@@ -214,7 +214,7 @@ ___
|
|
|
214
214
|
|
|
215
215
|
#### Defined in
|
|
216
216
|
|
|
217
|
-
[src/DiskSpaceError.ts:36](https://github.com/breautek/storm/blob/
|
|
217
|
+
[src/DiskSpaceError.ts:36](https://github.com/breautek/storm/blob/621aeec/src/DiskSpaceError.ts#L36)
|
|
218
218
|
|
|
219
219
|
___
|
|
220
220
|
|
|
@@ -232,7 +232,7 @@ ___
|
|
|
232
232
|
|
|
233
233
|
#### Defined in
|
|
234
234
|
|
|
235
|
-
[src/DiskSpaceError.ts:28](https://github.com/breautek/storm/blob/
|
|
235
|
+
[src/DiskSpaceError.ts:28](https://github.com/breautek/storm/blob/621aeec/src/DiskSpaceError.ts#L28)
|
|
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/621aeec/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/621aeec/src/StormError.ts#L54)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
|
|
45
45
|
#### Defined in
|
|
46
46
|
|
|
47
|
-
[src/Query.ts:23](https://github.com/breautek/storm/blob/
|
|
47
|
+
[src/Query.ts:23](https://github.com/breautek/storm/blob/621aeec/src/Query.ts#L23)
|
|
48
48
|
|
|
49
49
|
## Methods
|
|
50
50
|
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
|
|
63
63
|
#### Defined in
|
|
64
64
|
|
|
65
|
-
[src/DropTemporaryTableQuery.ts:29](https://github.com/breautek/storm/blob/
|
|
65
|
+
[src/DropTemporaryTableQuery.ts:29](https://github.com/breautek/storm/blob/621aeec/src/DropTemporaryTableQuery.ts#L29)
|
|
66
66
|
|
|
67
67
|
___
|
|
68
68
|
|
|
@@ -86,7 +86,7 @@ ___
|
|
|
86
86
|
|
|
87
87
|
#### Defined in
|
|
88
88
|
|
|
89
|
-
[src/Query.ts:63](https://github.com/breautek/storm/blob/
|
|
89
|
+
[src/Query.ts:63](https://github.com/breautek/storm/blob/621aeec/src/Query.ts#L63)
|
|
90
90
|
|
|
91
91
|
___
|
|
92
92
|
|
|
@@ -104,7 +104,7 @@ ___
|
|
|
104
104
|
|
|
105
105
|
#### Defined in
|
|
106
106
|
|
|
107
|
-
[src/DropTemporaryTableQuery.ts:25](https://github.com/breautek/storm/blob/
|
|
107
|
+
[src/DropTemporaryTableQuery.ts:25](https://github.com/breautek/storm/blob/621aeec/src/DropTemporaryTableQuery.ts#L25)
|
|
108
108
|
|
|
109
109
|
___
|
|
110
110
|
|
|
@@ -122,7 +122,7 @@ ___
|
|
|
122
122
|
|
|
123
123
|
#### Defined in
|
|
124
124
|
|
|
125
|
-
[src/Query.ts:31](https://github.com/breautek/storm/blob/
|
|
125
|
+
[src/Query.ts:31](https://github.com/breautek/storm/blob/621aeec/src/Query.ts#L31)
|
|
126
126
|
|
|
127
127
|
___
|
|
128
128
|
|
|
@@ -140,7 +140,7 @@ ___
|
|
|
140
140
|
|
|
141
141
|
#### Defined in
|
|
142
142
|
|
|
143
|
-
[src/Query.ts:37](https://github.com/breautek/storm/blob/
|
|
143
|
+
[src/Query.ts:37](https://github.com/breautek/storm/blob/621aeec/src/Query.ts#L37)
|
|
144
144
|
|
|
145
145
|
___
|
|
146
146
|
|
|
@@ -167,7 +167,7 @@ Override to augment/manipulate the returned result set.
|
|
|
167
167
|
|
|
168
168
|
#### Defined in
|
|
169
169
|
|
|
170
|
-
[src/Query.ts:58](https://github.com/breautek/storm/blob/
|
|
170
|
+
[src/Query.ts:58](https://github.com/breautek/storm/blob/621aeec/src/Query.ts#L58)
|
|
171
171
|
|
|
172
172
|
___
|
|
173
173
|
|
|
@@ -194,4 +194,4 @@ Can be used to set session variables or create temporary tables, etc.
|
|
|
194
194
|
|
|
195
195
|
#### Defined in
|
|
196
196
|
|
|
197
|
-
[src/Query.ts:48](https://github.com/breautek/storm/blob/
|
|
197
|
+
[src/Query.ts:48](https://github.com/breautek/storm/blob/621aeec/src/Query.ts#L48)
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
#### Defined in
|
|
57
57
|
|
|
58
|
-
[src/DuplicateEntryError.ts:28](https://github.com/breautek/storm/blob/
|
|
58
|
+
[src/DuplicateEntryError.ts:28](https://github.com/breautek/storm/blob/621aeec/src/DuplicateEntryError.ts#L28)
|
|
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/DuplicateEntryError.ts:41](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/DuplicateEntryError.ts:41](https://github.com/breautek/storm/blob/621aeec/src/DuplicateEntryError.ts#L41)
|
|
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/621aeec/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/621aeec/src/StormError.ts#L79)
|
|
202
202
|
|
|
203
203
|
___
|
|
204
204
|
|
|
@@ -216,7 +216,7 @@ ___
|
|
|
216
216
|
|
|
217
217
|
#### Defined in
|
|
218
218
|
|
|
219
|
-
[src/DuplicateEntryError.ts:45](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/DuplicateEntryError.ts:45](https://github.com/breautek/storm/blob/621aeec/src/DuplicateEntryError.ts#L45)
|
|
220
220
|
|
|
221
221
|
___
|
|
222
222
|
|
|
@@ -234,7 +234,7 @@ ___
|
|
|
234
234
|
|
|
235
235
|
#### Defined in
|
|
236
236
|
|
|
237
|
-
[src/DuplicateEntryError.ts:36](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/DuplicateEntryError.ts:36](https://github.com/breautek/storm/blob/621aeec/src/DuplicateEntryError.ts#L36)
|
|
238
238
|
|
|
239
239
|
___
|
|
240
240
|
|
|
@@ -255,7 +255,7 @@ They are kept secret from the client.
|
|
|
255
255
|
|
|
256
256
|
#### Defined in
|
|
257
257
|
|
|
258
|
-
[src/StormError.ts:62](https://github.com/breautek/storm/blob/
|
|
258
|
+
[src/StormError.ts:62](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L62)
|
|
259
259
|
|
|
260
260
|
___
|
|
261
261
|
|
|
@@ -275,7 +275,7 @@ Sends details to the client.
|
|
|
275
275
|
|
|
276
276
|
#### Defined in
|
|
277
277
|
|
|
278
|
-
[src/StormError.ts:54](https://github.com/breautek/storm/blob/
|
|
278
|
+
[src/StormError.ts:54](https://github.com/breautek/storm/blob/621aeec/src/StormError.ts#L54)
|
|
279
279
|
|
|
280
280
|
___
|
|
281
281
|
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
#### Defined in
|
|
55
55
|
|
|
56
|
-
[src/EntityNotFoundError.ts:22](https://github.com/breautek/storm/blob/
|
|
56
|
+
[src/EntityNotFoundError.ts:22](https://github.com/breautek/storm/blob/621aeec/src/EntityNotFoundError.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/EntityNotFoundError.ts:30](https://github.com/breautek/storm/blob/
|
|
163
|
+
[src/EntityNotFoundError.ts:30](https://github.com/breautek/storm/blob/621aeec/src/EntityNotFoundError.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/621aeec/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/621aeec/src/StormError.ts#L79)
|
|
200
200
|
|
|
201
201
|
___
|
|
202
202
|
|
|
@@ -214,7 +214,7 @@ ___
|
|
|
214
214
|
|
|
215
215
|
#### Defined in
|
|
216
216
|
|
|
217
|
-
[src/EntityNotFoundError.ts:34](https://github.com/breautek/storm/blob/
|
|
217
|
+
[src/EntityNotFoundError.ts:34](https://github.com/breautek/storm/blob/621aeec/src/EntityNotFoundError.ts#L34)
|
|
218
218
|
|
|
219
219
|
___
|
|
220
220
|
|
|
@@ -232,7 +232,7 @@ ___
|
|
|
232
232
|
|
|
233
233
|
#### Defined in
|
|
234
234
|
|
|
235
|
-
[src/EntityNotFoundError.ts:26](https://github.com/breautek/storm/blob/
|
|
235
|
+
[src/EntityNotFoundError.ts:26](https://github.com/breautek/storm/blob/621aeec/src/EntityNotFoundError.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/621aeec/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/621aeec/src/StormError.ts#L54)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
#### Defined in
|
|
55
55
|
|
|
56
|
-
[src/ExpiredTokenError.ts:23](https://github.com/breautek/storm/blob/
|
|
56
|
+
[src/ExpiredTokenError.ts:23](https://github.com/breautek/storm/blob/621aeec/src/ExpiredTokenError.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/ExpiredTokenError.ts:31](https://github.com/breautek/storm/blob/
|
|
163
|
+
[src/ExpiredTokenError.ts:31](https://github.com/breautek/storm/blob/621aeec/src/ExpiredTokenError.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/621aeec/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/621aeec/src/StormError.ts#L79)
|
|
200
200
|
|
|
201
201
|
___
|
|
202
202
|
|
|
@@ -214,7 +214,7 @@ ___
|
|
|
214
214
|
|
|
215
215
|
#### Defined in
|
|
216
216
|
|
|
217
|
-
[src/ExpiredTokenError.ts:35](https://github.com/breautek/storm/blob/
|
|
217
|
+
[src/ExpiredTokenError.ts:35](https://github.com/breautek/storm/blob/621aeec/src/ExpiredTokenError.ts#L35)
|
|
218
218
|
|
|
219
219
|
___
|
|
220
220
|
|
|
@@ -232,7 +232,7 @@ ___
|
|
|
232
232
|
|
|
233
233
|
#### Defined in
|
|
234
234
|
|
|
235
|
-
[src/ExpiredTokenError.ts:27](https://github.com/breautek/storm/blob/
|
|
235
|
+
[src/ExpiredTokenError.ts:27](https://github.com/breautek/storm/blob/621aeec/src/ExpiredTokenError.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/621aeec/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/621aeec/src/StormError.ts#L54)
|
|
277
277
|
|
|
278
278
|
___
|
|
279
279
|
|