@breautek/storm 4.5.0 → 4.6.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 +12 -0
- package/docs/README.md +6 -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 +26 -20
- package/docs/classes/DatabaseQueryError.md +10 -10
- package/docs/classes/DeadLockError.md +10 -10
- package/docs/classes/DiskSpaceError.md +10 -10
- package/docs/classes/DropTemporaryTableQuery.md +8 -8
- 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 +14 -14
- 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/ManagedDatabaseConnection.md +26 -20
- 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 +27 -21
- 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 +8 -8
- package/docs/classes/RawError.md +10 -10
- 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 +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/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 +52 -0
- 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 +21 -15
- 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/jest.config.js +5 -1
- package/lib/DatabaseConnection.d.ts +2 -1
- package/lib/DatabaseConnection.js.map +1 -1
- package/lib/IDatabaseConnection.d.ts +2 -1
- package/lib/IsolationLevel.d.ts +6 -0
- package/lib/IsolationLevel.js +26 -0
- package/lib/IsolationLevel.js.map +1 -0
- package/lib/ManagedDatabaseConnection.d.ts +2 -1
- package/lib/ManagedDatabaseConnection.js +2 -2
- package/lib/ManagedDatabaseConnection.js.map +1 -1
- package/lib/MySQLConnection.d.ts +2 -1
- package/lib/MySQLConnection.js +15 -12
- package/lib/MySQLConnection.js.map +1 -1
- package/lib/api.d.ts +1 -0
- package/lib/api.js +4 -1
- package/lib/api.js.map +1 -1
- package/lib/private/SetIsolationLevelQuery.d.ts +5 -0
- package/lib/private/SetIsolationLevelQuery.js +42 -0
- package/lib/private/SetIsolationLevelQuery.js.map +1 -0
- package/package.json +1 -1
- package/src/DatabaseConnection.ts +2 -1
- package/src/IDatabaseConnection.ts +2 -1
- package/src/IsolationLevel.ts +22 -0
- package/src/ManagedDatabaseConnection.ts +3 -2
- package/src/MySQLConnection.ts +16 -12
- package/src/api.ts +1 -0
- package/src/private/SetIsolationLevelQuery.ts +39 -0
|
@@ -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/daf9166/src/DatabaseQueryError.ts#L25)
|
|
60
60
|
|
|
61
61
|
## Properties
|
|
62
62
|
|
|
@@ -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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/src/StormError.ts#L60)
|
|
323
323
|
|
|
324
324
|
___
|
|
325
325
|
|
|
@@ -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/daf9166/src/DatabaseQueryError.ts#L25)
|
|
60
60
|
|
|
61
61
|
## Properties
|
|
62
62
|
|
|
@@ -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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/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/daf9166/src/StormError.ts#L60)
|
|
323
323
|
|
|
324
324
|
___
|
|
325
325
|
|
|
@@ -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/daf9166/src/DiskSpaceError.ts#L22)
|
|
57
57
|
|
|
58
58
|
## Properties
|
|
59
59
|
|
|
@@ -162,7 +162,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
|
|
|
162
162
|
|
|
163
163
|
#### Defined in
|
|
164
164
|
|
|
165
|
-
[src/DiskSpaceError.ts:32](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/DiskSpaceError.ts:32](https://github.com/breautek/storm/blob/daf9166/src/DiskSpaceError.ts#L32)
|
|
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/daf9166/src/StormError.ts#L76)
|
|
184
184
|
|
|
185
185
|
___
|
|
186
186
|
|
|
@@ -198,7 +198,7 @@ ___
|
|
|
198
198
|
|
|
199
199
|
#### Defined in
|
|
200
200
|
|
|
201
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/
|
|
201
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L97)
|
|
202
202
|
|
|
203
203
|
___
|
|
204
204
|
|
|
@@ -216,7 +216,7 @@ ___
|
|
|
216
216
|
|
|
217
217
|
#### Defined in
|
|
218
218
|
|
|
219
|
-
[src/DiskSpaceError.ts:36](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/DiskSpaceError.ts:36](https://github.com/breautek/storm/blob/daf9166/src/DiskSpaceError.ts#L36)
|
|
220
220
|
|
|
221
221
|
___
|
|
222
222
|
|
|
@@ -234,7 +234,7 @@ ___
|
|
|
234
234
|
|
|
235
235
|
#### Defined in
|
|
236
236
|
|
|
237
|
-
[src/DiskSpaceError.ts:40](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/DiskSpaceError.ts:40](https://github.com/breautek/storm/blob/daf9166/src/DiskSpaceError.ts#L40)
|
|
238
238
|
|
|
239
239
|
___
|
|
240
240
|
|
|
@@ -252,7 +252,7 @@ ___
|
|
|
252
252
|
|
|
253
253
|
#### Defined in
|
|
254
254
|
|
|
255
|
-
[src/StormError.ts:93](https://github.com/breautek/storm/blob/
|
|
255
|
+
[src/StormError.ts:93](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L93)
|
|
256
256
|
|
|
257
257
|
___
|
|
258
258
|
|
|
@@ -270,7 +270,7 @@ ___
|
|
|
270
270
|
|
|
271
271
|
#### Defined in
|
|
272
272
|
|
|
273
|
-
[src/DiskSpaceError.ts:28](https://github.com/breautek/storm/blob/
|
|
273
|
+
[src/DiskSpaceError.ts:28](https://github.com/breautek/storm/blob/daf9166/src/DiskSpaceError.ts#L28)
|
|
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/daf9166/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/daf9166/src/StormError.ts#L60)
|
|
315
315
|
|
|
316
316
|
___
|
|
317
317
|
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
#### Defined in
|
|
44
44
|
|
|
45
|
-
[src/Query.ts:22](https://github.com/breautek/storm/blob/
|
|
45
|
+
[src/Query.ts:22](https://github.com/breautek/storm/blob/daf9166/src/Query.ts#L22)
|
|
46
46
|
|
|
47
47
|
## Methods
|
|
48
48
|
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
|
|
61
61
|
#### Defined in
|
|
62
62
|
|
|
63
|
-
[src/DropTemporaryTableQuery.ts:29](https://github.com/breautek/storm/blob/
|
|
63
|
+
[src/DropTemporaryTableQuery.ts:29](https://github.com/breautek/storm/blob/daf9166/src/DropTemporaryTableQuery.ts#L29)
|
|
64
64
|
|
|
65
65
|
___
|
|
66
66
|
|
|
@@ -84,7 +84,7 @@ ___
|
|
|
84
84
|
|
|
85
85
|
#### Defined in
|
|
86
86
|
|
|
87
|
-
[src/Query.ts:70](https://github.com/breautek/storm/blob/
|
|
87
|
+
[src/Query.ts:70](https://github.com/breautek/storm/blob/daf9166/src/Query.ts#L70)
|
|
88
88
|
|
|
89
89
|
___
|
|
90
90
|
|
|
@@ -104,7 +104,7 @@ parameters that was passed into the constructor.
|
|
|
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/daf9166/src/DropTemporaryTableQuery.ts#L25)
|
|
108
108
|
|
|
109
109
|
___
|
|
110
110
|
|
|
@@ -126,7 +126,7 @@ parameters that will be used when this query is ran.
|
|
|
126
126
|
|
|
127
127
|
#### Defined in
|
|
128
128
|
|
|
129
|
-
[src/Query.ts:38](https://github.com/breautek/storm/blob/
|
|
129
|
+
[src/Query.ts:38](https://github.com/breautek/storm/blob/daf9166/src/Query.ts#L38)
|
|
130
130
|
|
|
131
131
|
___
|
|
132
132
|
|
|
@@ -150,7 +150,7 @@ ___
|
|
|
150
150
|
|
|
151
151
|
#### Defined in
|
|
152
152
|
|
|
153
|
-
[src/Query.ts:44](https://github.com/breautek/storm/blob/
|
|
153
|
+
[src/Query.ts:44](https://github.com/breautek/storm/blob/daf9166/src/Query.ts#L44)
|
|
154
154
|
|
|
155
155
|
___
|
|
156
156
|
|
|
@@ -177,7 +177,7 @@ Override to augment/manipulate the returned result set.
|
|
|
177
177
|
|
|
178
178
|
#### Defined in
|
|
179
179
|
|
|
180
|
-
[src/Query.ts:65](https://github.com/breautek/storm/blob/
|
|
180
|
+
[src/Query.ts:65](https://github.com/breautek/storm/blob/daf9166/src/Query.ts#L65)
|
|
181
181
|
|
|
182
182
|
___
|
|
183
183
|
|
|
@@ -204,4 +204,4 @@ Can be used to set session variables or create temporary tables, etc.
|
|
|
204
204
|
|
|
205
205
|
#### Defined in
|
|
206
206
|
|
|
207
|
-
[src/Query.ts:55](https://github.com/breautek/storm/blob/
|
|
207
|
+
[src/Query.ts:55](https://github.com/breautek/storm/blob/daf9166/src/Query.ts#L55)
|
|
@@ -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/daf9166/src/DuplicateEntryError.ts#L28)
|
|
59
59
|
|
|
60
60
|
## Properties
|
|
61
61
|
|
|
@@ -164,7 +164,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
|
|
|
164
164
|
|
|
165
165
|
#### Defined in
|
|
166
166
|
|
|
167
|
-
[src/DuplicateEntryError.ts:41](https://github.com/breautek/storm/blob/
|
|
167
|
+
[src/DuplicateEntryError.ts:41](https://github.com/breautek/storm/blob/daf9166/src/DuplicateEntryError.ts#L41)
|
|
168
168
|
|
|
169
169
|
___
|
|
170
170
|
|
|
@@ -182,7 +182,7 @@ ___
|
|
|
182
182
|
|
|
183
183
|
#### Defined in
|
|
184
184
|
|
|
185
|
-
[src/StormError.ts:76](https://github.com/breautek/storm/blob/
|
|
185
|
+
[src/StormError.ts:76](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L76)
|
|
186
186
|
|
|
187
187
|
___
|
|
188
188
|
|
|
@@ -200,7 +200,7 @@ ___
|
|
|
200
200
|
|
|
201
201
|
#### Defined in
|
|
202
202
|
|
|
203
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/
|
|
203
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L97)
|
|
204
204
|
|
|
205
205
|
___
|
|
206
206
|
|
|
@@ -218,7 +218,7 @@ ___
|
|
|
218
218
|
|
|
219
219
|
#### Defined in
|
|
220
220
|
|
|
221
|
-
[src/DuplicateEntryError.ts:45](https://github.com/breautek/storm/blob/
|
|
221
|
+
[src/DuplicateEntryError.ts:45](https://github.com/breautek/storm/blob/daf9166/src/DuplicateEntryError.ts#L45)
|
|
222
222
|
|
|
223
223
|
___
|
|
224
224
|
|
|
@@ -236,7 +236,7 @@ ___
|
|
|
236
236
|
|
|
237
237
|
#### Defined in
|
|
238
238
|
|
|
239
|
-
[src/DuplicateEntryError.ts:49](https://github.com/breautek/storm/blob/
|
|
239
|
+
[src/DuplicateEntryError.ts:49](https://github.com/breautek/storm/blob/daf9166/src/DuplicateEntryError.ts#L49)
|
|
240
240
|
|
|
241
241
|
___
|
|
242
242
|
|
|
@@ -254,7 +254,7 @@ ___
|
|
|
254
254
|
|
|
255
255
|
#### Defined in
|
|
256
256
|
|
|
257
|
-
[src/DuplicateEntryError.ts:53](https://github.com/breautek/storm/blob/
|
|
257
|
+
[src/DuplicateEntryError.ts:53](https://github.com/breautek/storm/blob/daf9166/src/DuplicateEntryError.ts#L53)
|
|
258
258
|
|
|
259
259
|
___
|
|
260
260
|
|
|
@@ -272,7 +272,7 @@ ___
|
|
|
272
272
|
|
|
273
273
|
#### Defined in
|
|
274
274
|
|
|
275
|
-
[src/DuplicateEntryError.ts:36](https://github.com/breautek/storm/blob/
|
|
275
|
+
[src/DuplicateEntryError.ts:36](https://github.com/breautek/storm/blob/daf9166/src/DuplicateEntryError.ts#L36)
|
|
276
276
|
|
|
277
277
|
___
|
|
278
278
|
|
|
@@ -293,7 +293,7 @@ They are kept secret from the client.
|
|
|
293
293
|
|
|
294
294
|
#### Defined in
|
|
295
295
|
|
|
296
|
-
[src/StormError.ts:68](https://github.com/breautek/storm/blob/
|
|
296
|
+
[src/StormError.ts:68](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L68)
|
|
297
297
|
|
|
298
298
|
___
|
|
299
299
|
|
|
@@ -313,7 +313,7 @@ Sends details to the client.
|
|
|
313
313
|
|
|
314
314
|
#### Defined in
|
|
315
315
|
|
|
316
|
-
[src/StormError.ts:60](https://github.com/breautek/storm/blob/
|
|
316
|
+
[src/StormError.ts:60](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L60)
|
|
317
317
|
|
|
318
318
|
___
|
|
319
319
|
|
|
@@ -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/daf9166/src/EntityNotFoundError.ts#L22)
|
|
57
57
|
|
|
58
58
|
## Properties
|
|
59
59
|
|
|
@@ -162,7 +162,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
|
|
|
162
162
|
|
|
163
163
|
#### Defined in
|
|
164
164
|
|
|
165
|
-
[src/EntityNotFoundError.ts:30](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/EntityNotFoundError.ts:30](https://github.com/breautek/storm/blob/daf9166/src/EntityNotFoundError.ts#L30)
|
|
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/daf9166/src/StormError.ts#L76)
|
|
184
184
|
|
|
185
185
|
___
|
|
186
186
|
|
|
@@ -198,7 +198,7 @@ ___
|
|
|
198
198
|
|
|
199
199
|
#### Defined in
|
|
200
200
|
|
|
201
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/
|
|
201
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L97)
|
|
202
202
|
|
|
203
203
|
___
|
|
204
204
|
|
|
@@ -216,7 +216,7 @@ ___
|
|
|
216
216
|
|
|
217
217
|
#### Defined in
|
|
218
218
|
|
|
219
|
-
[src/EntityNotFoundError.ts:34](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/EntityNotFoundError.ts:34](https://github.com/breautek/storm/blob/daf9166/src/EntityNotFoundError.ts#L34)
|
|
220
220
|
|
|
221
221
|
___
|
|
222
222
|
|
|
@@ -234,7 +234,7 @@ ___
|
|
|
234
234
|
|
|
235
235
|
#### Defined in
|
|
236
236
|
|
|
237
|
-
[src/EntityNotFoundError.ts:38](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/EntityNotFoundError.ts:38](https://github.com/breautek/storm/blob/daf9166/src/EntityNotFoundError.ts#L38)
|
|
238
238
|
|
|
239
239
|
___
|
|
240
240
|
|
|
@@ -252,7 +252,7 @@ ___
|
|
|
252
252
|
|
|
253
253
|
#### Defined in
|
|
254
254
|
|
|
255
|
-
[src/EntityNotFoundError.ts:42](https://github.com/breautek/storm/blob/
|
|
255
|
+
[src/EntityNotFoundError.ts:42](https://github.com/breautek/storm/blob/daf9166/src/EntityNotFoundError.ts#L42)
|
|
256
256
|
|
|
257
257
|
___
|
|
258
258
|
|
|
@@ -270,7 +270,7 @@ ___
|
|
|
270
270
|
|
|
271
271
|
#### Defined in
|
|
272
272
|
|
|
273
|
-
[src/EntityNotFoundError.ts:26](https://github.com/breautek/storm/blob/
|
|
273
|
+
[src/EntityNotFoundError.ts:26](https://github.com/breautek/storm/blob/daf9166/src/EntityNotFoundError.ts#L26)
|
|
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/daf9166/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/daf9166/src/StormError.ts#L60)
|
|
315
315
|
|
|
316
316
|
___
|
|
317
317
|
|
|
@@ -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/daf9166/src/ExpiredTokenError.ts#L23)
|
|
57
57
|
|
|
58
58
|
## Properties
|
|
59
59
|
|
|
@@ -162,7 +162,7 @@ node_modules/@types/node/ts4.8/globals.d.ts:13
|
|
|
162
162
|
|
|
163
163
|
#### Defined in
|
|
164
164
|
|
|
165
|
-
[src/ExpiredTokenError.ts:31](https://github.com/breautek/storm/blob/
|
|
165
|
+
[src/ExpiredTokenError.ts:31](https://github.com/breautek/storm/blob/daf9166/src/ExpiredTokenError.ts#L31)
|
|
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/daf9166/src/StormError.ts#L76)
|
|
184
184
|
|
|
185
185
|
___
|
|
186
186
|
|
|
@@ -198,7 +198,7 @@ ___
|
|
|
198
198
|
|
|
199
199
|
#### Defined in
|
|
200
200
|
|
|
201
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/
|
|
201
|
+
[src/StormError.ts:97](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L97)
|
|
202
202
|
|
|
203
203
|
___
|
|
204
204
|
|
|
@@ -216,7 +216,7 @@ ___
|
|
|
216
216
|
|
|
217
217
|
#### Defined in
|
|
218
218
|
|
|
219
|
-
[src/ExpiredTokenError.ts:35](https://github.com/breautek/storm/blob/
|
|
219
|
+
[src/ExpiredTokenError.ts:35](https://github.com/breautek/storm/blob/daf9166/src/ExpiredTokenError.ts#L35)
|
|
220
220
|
|
|
221
221
|
___
|
|
222
222
|
|
|
@@ -234,7 +234,7 @@ ___
|
|
|
234
234
|
|
|
235
235
|
#### Defined in
|
|
236
236
|
|
|
237
|
-
[src/ExpiredTokenError.ts:39](https://github.com/breautek/storm/blob/
|
|
237
|
+
[src/ExpiredTokenError.ts:39](https://github.com/breautek/storm/blob/daf9166/src/ExpiredTokenError.ts#L39)
|
|
238
238
|
|
|
239
239
|
___
|
|
240
240
|
|
|
@@ -252,7 +252,7 @@ ___
|
|
|
252
252
|
|
|
253
253
|
#### Defined in
|
|
254
254
|
|
|
255
|
-
[src/StormError.ts:93](https://github.com/breautek/storm/blob/
|
|
255
|
+
[src/StormError.ts:93](https://github.com/breautek/storm/blob/daf9166/src/StormError.ts#L93)
|
|
256
256
|
|
|
257
257
|
___
|
|
258
258
|
|
|
@@ -270,7 +270,7 @@ ___
|
|
|
270
270
|
|
|
271
271
|
#### Defined in
|
|
272
272
|
|
|
273
|
-
[src/ExpiredTokenError.ts:27](https://github.com/breautek/storm/blob/
|
|
273
|
+
[src/ExpiredTokenError.ts:27](https://github.com/breautek/storm/blob/daf9166/src/ExpiredTokenError.ts#L27)
|
|
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/daf9166/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/daf9166/src/StormError.ts#L60)
|
|
315
315
|
|
|
316
316
|
___
|
|
317
317
|
|