@breautek/storm 5.0.1 → 5.0.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.
Files changed (183) hide show
  1. package/CHANGELOG.md +10 -2
  2. package/docs/assets/highlight.css +85 -0
  3. package/docs/assets/main.js +58 -0
  4. package/docs/assets/search.js +1 -0
  5. package/docs/assets/style.css +1367 -0
  6. package/docs/classes/Application.html +1235 -0
  7. package/docs/classes/BackendAuthenticationMiddleware.html +191 -0
  8. package/docs/classes/CORSMiddleware.html +257 -0
  9. package/docs/classes/ConfigLoader.html +166 -0
  10. package/docs/classes/Database.html +340 -0
  11. package/docs/classes/DatabaseCastObject.html +203 -0
  12. package/docs/classes/DatabaseConnection.html +550 -0
  13. package/docs/classes/DatabaseQueryError.html +372 -0
  14. package/docs/classes/DeadLockError.html +372 -0
  15. package/docs/classes/DiskSpaceError.html +362 -0
  16. package/docs/classes/DropTemporaryTableQuery.html +285 -0
  17. package/docs/classes/DumpStream.html +161 -0
  18. package/docs/classes/DuplicateEntryError.html +366 -0
  19. package/docs/classes/EntityNotFoundError.html +362 -0
  20. package/docs/classes/ExpiredTokenError.html +362 -0
  21. package/docs/classes/Handler.html +395 -0
  22. package/docs/classes/InternalError.html +362 -0
  23. package/docs/classes/InvalidCredentialsError.html +362 -0
  24. package/docs/classes/InvalidValueError.html +373 -0
  25. package/docs/classes/LineString.html +212 -0
  26. package/docs/classes/LockWaitTimeoutError.html +372 -0
  27. package/docs/classes/ManagedDatabaseConnection.html +410 -0
  28. package/docs/classes/Middleware.html +202 -0
  29. package/docs/classes/MissingConfigError.html +362 -0
  30. package/docs/classes/MissingParameterError.html +362 -0
  31. package/docs/classes/MySQLConnection.html +546 -0
  32. package/docs/classes/MySQLDatabase.html +353 -0
  33. package/docs/classes/NotImplementedError.html +362 -0
  34. package/docs/classes/Point.html +214 -0
  35. package/docs/classes/Polygon.html +212 -0
  36. package/docs/classes/Query.html +312 -0
  37. package/docs/classes/RawError.html +374 -0
  38. package/docs/classes/RawQuery.html +305 -0
  39. package/docs/classes/Request.html +375 -0
  40. package/docs/classes/Response.html +329 -0
  41. package/docs/classes/ResponseData.html +255 -0
  42. package/docs/classes/ServiceProvider.html +385 -0
  43. package/docs/classes/ServiceResponse.html +213 -0
  44. package/docs/classes/SetSessionVariableQuery.html +285 -0
  45. package/docs/classes/StormError.html +377 -0
  46. package/docs/classes/TemporaryTableQuery.html +290 -0
  47. package/docs/classes/Token.html +181 -0
  48. package/docs/classes/TokenManager.html +233 -0
  49. package/docs/classes/Transaction.html +267 -0
  50. package/docs/classes/UnauthorizedAccessError.html +362 -0
  51. package/docs/enums/ErrorCode.html +210 -0
  52. package/docs/enums/ExitCode.html +161 -0
  53. package/docs/enums/HTTPMethod.html +175 -0
  54. package/docs/enums/IsolationLevel.html +175 -0
  55. package/docs/enums/JWTError.html +161 -0
  56. package/docs/enums/StatusCode.html +483 -0
  57. package/docs/functions/formidable-1.html +143 -0
  58. package/docs/functions/getInstance.html +138 -0
  59. package/docs/index.html +224 -0
  60. package/docs/interfaces/IAdditionalErrorDetails.html +140 -0
  61. package/docs/interfaces/IAuthTokenData.html +172 -0
  62. package/docs/interfaces/IConfig.html +225 -0
  63. package/docs/interfaces/IDatabaseConfig.html +198 -0
  64. package/docs/interfaces/IDatabaseConnection.html +332 -0
  65. package/docs/interfaces/IErrorResponse.html +186 -0
  66. package/docs/interfaces/IFormData.html +165 -0
  67. package/docs/interfaces/IHandler.html +171 -0
  68. package/docs/interfaces/IInsertQueryResult.html +172 -0
  69. package/docs/interfaces/IJWTVerifyOptions.html +158 -0
  70. package/docs/interfaces/IParameterMap.html +140 -0
  71. package/docs/interfaces/IQueryable.html +233 -0
  72. package/docs/interfaces/IRequestResponse.html +172 -0
  73. package/docs/interfaces/IServiceHeaders.html +140 -0
  74. package/docs/interfaces/ISetSessionVariableQueryInput.html +165 -0
  75. package/docs/interfaces/ITemporaryTableQueryInput.html +165 -0
  76. package/docs/interfaces/IUpdateQueryResult.html +165 -0
  77. package/docs/interfaces/formidable.EmitData.html +180 -0
  78. package/docs/interfaces/formidable.EventData.html +201 -0
  79. package/docs/interfaces/formidable.Fields.html +141 -0
  80. package/docs/interfaces/formidable.File.html +239 -0
  81. package/docs/interfaces/formidable.FileJSON.html +238 -0
  82. package/docs/interfaces/formidable.Files.html +141 -0
  83. package/docs/interfaces/formidable.Options.html +308 -0
  84. package/docs/interfaces/formidable.Part.html +691 -0
  85. package/docs/modules/formidable.html +159 -0
  86. package/docs/types/IDeleteQueryResult.html +134 -0
  87. package/docs/types/IHandlerError.html +139 -0
  88. package/docs/types/IHandlerResponse.html +145 -0
  89. package/docs/types/TCoordinate.html +134 -0
  90. package/docs/types/formidable.BufferEncoding.html +135 -0
  91. package/docs/types/formidable.DefaultOptions.html +135 -0
  92. package/docs/types/formidable.EnabledPlugins.html +135 -0
  93. package/docs/types/formidable.EventNames.html +135 -0
  94. package/docs/types/formidable.MappedParsers.html +135 -0
  95. package/docs/types/formidable.Plugin.html +135 -0
  96. package/docs/types/formidable.PluginFunction.html +150 -0
  97. package/docs/types/formidable.Plugins.html +135 -0
  98. package/lib/StatusCode.d.ts +1 -1
  99. package/lib/StatusCode.js +1 -1
  100. package/lib/Transaction.d.ts +4 -0
  101. package/lib/Transaction.js +4 -0
  102. package/lib/Transaction.js.map +1 -1
  103. package/package.json +14 -14
  104. package/src/StatusCode.ts +1 -1
  105. package/src/Transaction.ts +4 -0
  106. package/docs/README.md +0 -188
  107. package/docs/classes/Application.md +0 -1648
  108. package/docs/classes/BackendAuthenticationMiddleware.md +0 -49
  109. package/docs/classes/CORSMiddleware.md +0 -143
  110. package/docs/classes/ConfigLoader.md +0 -29
  111. package/docs/classes/Database.md +0 -259
  112. package/docs/classes/DatabaseCastObject.md +0 -79
  113. package/docs/classes/DatabaseConnection.md +0 -556
  114. package/docs/classes/DatabaseQueryError.md +0 -351
  115. package/docs/classes/DeadLockError.md +0 -349
  116. package/docs/classes/DiskSpaceError.md +0 -341
  117. package/docs/classes/DropTemporaryTableQuery.md +0 -207
  118. package/docs/classes/DumpStream.md +0 -23
  119. package/docs/classes/DuplicateEntryError.md +0 -343
  120. package/docs/classes/EntityNotFoundError.md +0 -341
  121. package/docs/classes/ExpiredTokenError.md +0 -341
  122. package/docs/classes/Handler.md +0 -302
  123. package/docs/classes/InternalError.md +0 -341
  124. package/docs/classes/InvalidCredentialsError.md +0 -341
  125. package/docs/classes/InvalidValueError.md +0 -349
  126. package/docs/classes/LineString.md +0 -101
  127. package/docs/classes/LockWaitTimeoutError.md +0 -349
  128. package/docs/classes/ManagedDatabaseConnection.md +0 -403
  129. package/docs/classes/Middleware.md +0 -72
  130. package/docs/classes/MissingConfigError.md +0 -341
  131. package/docs/classes/MissingParameterError.md +0 -341
  132. package/docs/classes/MySQLConnection.md +0 -569
  133. package/docs/classes/MySQLDatabase.md +0 -314
  134. package/docs/classes/NotImplementedError.md +0 -341
  135. package/docs/classes/Point.md +0 -102
  136. package/docs/classes/Polygon.md +0 -101
  137. package/docs/classes/Query.md +0 -227
  138. package/docs/classes/RawError.md +0 -351
  139. package/docs/classes/RawQuery.md +0 -224
  140. package/docs/classes/Request.md +0 -321
  141. package/docs/classes/Response.md +0 -242
  142. package/docs/classes/ResponseData.md +0 -144
  143. package/docs/classes/ServiceProvider.md +0 -296
  144. package/docs/classes/ServiceResponse.md +0 -89
  145. package/docs/classes/SetSessionVariableQuery.md +0 -207
  146. package/docs/classes/StormError.md +0 -343
  147. package/docs/classes/TemporaryTableQuery.md +0 -213
  148. package/docs/classes/Token.md +0 -43
  149. package/docs/classes/TokenManager.md +0 -105
  150. package/docs/classes/Transaction.md +0 -161
  151. package/docs/classes/UnauthorizedAccessError.md +0 -341
  152. package/docs/enums/ErrorCode.md +0 -107
  153. package/docs/enums/ExitCode.md +0 -30
  154. package/docs/enums/HTTPMethod.md +0 -52
  155. package/docs/enums/IsolationLevel.md +0 -52
  156. package/docs/enums/JWTError.md +0 -30
  157. package/docs/enums/StatusCode.md +0 -536
  158. package/docs/interfaces/IAdditionalErrorDetails.md +0 -7
  159. package/docs/interfaces/IAuthTokenData.md +0 -41
  160. package/docs/interfaces/IConfig.md +0 -112
  161. package/docs/interfaces/IDatabaseConfig.md +0 -80
  162. package/docs/interfaces/IDatabaseConnection.md +0 -262
  163. package/docs/interfaces/IErrorResponse.md +0 -63
  164. package/docs/interfaces/IFormData.md +0 -30
  165. package/docs/interfaces/IHandler.md +0 -31
  166. package/docs/interfaces/IInsertQueryResult.md +0 -41
  167. package/docs/interfaces/IJWTVerifyOptions.md +0 -19
  168. package/docs/interfaces/IParameterMap.md +0 -7
  169. package/docs/interfaces/IQueryable.md +0 -119
  170. package/docs/interfaces/IRequestResponse.md +0 -37
  171. package/docs/interfaces/IServiceHeaders.md +0 -7
  172. package/docs/interfaces/ISetSessionVariableQueryInput.md +0 -30
  173. package/docs/interfaces/ITemporaryTableQueryInput.md +0 -30
  174. package/docs/interfaces/IUpdateQueryResult.md +0 -30
  175. package/docs/interfaces/formidable.EmitData.md +0 -54
  176. package/docs/interfaces/formidable.EventData.md +0 -87
  177. package/docs/interfaces/formidable.Fields.md +0 -9
  178. package/docs/interfaces/formidable.File.md +0 -131
  179. package/docs/interfaces/formidable.FileJSON.md +0 -151
  180. package/docs/interfaces/formidable.Files.md +0 -9
  181. package/docs/interfaces/formidable.Options.md +0 -225
  182. package/docs/interfaces/formidable.Part.md +0 -793
  183. package/docs/modules/formidable.md +0 -122
@@ -1,112 +0,0 @@
1
- [@breautek/storm](../README.md) / IConfig
2
-
3
- # Interface: IConfig
4
-
5
- ## Table of contents
6
-
7
- ### Properties
8
-
9
- - [authentication\_header](IConfig.md#authentication_header)
10
- - [backend\_authentication\_header](IConfig.md#backend_authentication_header)
11
- - [backend\_authentication\_secret](IConfig.md#backend_authentication_secret)
12
- - [bind](IConfig.md#bind)
13
- - [database](IConfig.md#database)
14
- - [log](IConfig.md#log)
15
- - [port](IConfig.md#port)
16
- - [request\_size\_limit](IConfig.md#request_size_limit)
17
-
18
- ## Properties
19
-
20
- ### authentication\_header
21
-
22
- • `Optional` **authentication\_header**: `string`
23
-
24
- #### Defined in
25
-
26
- [src/IConfig.ts:26](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L26)
27
-
28
- ___
29
-
30
- ### backend\_authentication\_header
31
-
32
- • `Optional` **backend\_authentication\_header**: `string`
33
-
34
- #### Defined in
35
-
36
- [src/IConfig.ts:27](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L27)
37
-
38
- ___
39
-
40
- ### backend\_authentication\_secret
41
-
42
- • `Optional` **backend\_authentication\_secret**: `string`
43
-
44
- #### Defined in
45
-
46
- [src/IConfig.ts:28](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L28)
47
-
48
- ___
49
-
50
- ### bind
51
-
52
- • `Optional` **bind**: `string`
53
-
54
- #### Defined in
55
-
56
- [src/IConfig.ts:22](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L22)
57
-
58
- ___
59
-
60
- ### database
61
-
62
- • `Optional` **database**: `Object`
63
-
64
- #### Type declaration
65
-
66
- | Name | Type |
67
- | :------ | :------ |
68
- | `main?` | [`IDatabaseConfig`](IDatabaseConfig.md)<``"MASTER"``\> |
69
- | `query_timeout?` | `number` |
70
- | `replicationNodes?` | [`IDatabaseConfig`](IDatabaseConfig.md)<`string`\>[] |
71
-
72
- #### Defined in
73
-
74
- [src/IConfig.ts:38](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L38)
75
-
76
- ___
77
-
78
- ### log
79
-
80
- • `Optional` **log**: `Object`
81
-
82
- #### Type declaration
83
-
84
- | Name | Type |
85
- | :------ | :------ |
86
- | `directory?` | `string` |
87
- | `filters?` | `string`[] |
88
- | `level?` | `LogLevel` |
89
-
90
- #### Defined in
91
-
92
- [src/IConfig.ts:31](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L31)
93
-
94
- ___
95
-
96
- ### port
97
-
98
- • `Optional` **port**: `number`
99
-
100
- #### Defined in
101
-
102
- [src/IConfig.ts:23](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L23)
103
-
104
- ___
105
-
106
- ### request\_size\_limit
107
-
108
- • `Optional` **request\_size\_limit**: `number`
109
-
110
- #### Defined in
111
-
112
- [src/IConfig.ts:45](https://github.com/breautek/storm/blob/3dcafe4/src/IConfig.ts#L45)
@@ -1,80 +0,0 @@
1
- [@breautek/storm](../README.md) / IDatabaseConfig
2
-
3
- # Interface: IDatabaseConfig<TName\>
4
-
5
- ## Type parameters
6
-
7
- | Name | Type |
8
- | :------ | :------ |
9
- | `TName` | `string` |
10
-
11
- ## Table of contents
12
-
13
- ### Properties
14
-
15
- - [database](IDatabaseConfig.md#database)
16
- - [host](IDatabaseConfig.md#host)
17
- - [name](IDatabaseConfig.md#name)
18
- - [password](IDatabaseConfig.md#password)
19
- - [port](IDatabaseConfig.md#port)
20
- - [user](IDatabaseConfig.md#user)
21
-
22
- ## Properties
23
-
24
- ### database
25
-
26
- • **database**: `string`
27
-
28
- #### Defined in
29
-
30
- [src/IDatabaseConfig.ts:21](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConfig.ts#L21)
31
-
32
- ___
33
-
34
- ### host
35
-
36
- • **host**: `string`
37
-
38
- #### Defined in
39
-
40
- [src/IDatabaseConfig.ts:19](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConfig.ts#L19)
41
-
42
- ___
43
-
44
- ### name
45
-
46
- • **name**: `TName`
47
-
48
- #### Defined in
49
-
50
- [src/IDatabaseConfig.ts:18](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConfig.ts#L18)
51
-
52
- ___
53
-
54
- ### password
55
-
56
- • **password**: `string`
57
-
58
- #### Defined in
59
-
60
- [src/IDatabaseConfig.ts:23](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConfig.ts#L23)
61
-
62
- ___
63
-
64
- ### port
65
-
66
- • **port**: `number`
67
-
68
- #### Defined in
69
-
70
- [src/IDatabaseConfig.ts:20](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConfig.ts#L20)
71
-
72
- ___
73
-
74
- ### user
75
-
76
- • **user**: `string`
77
-
78
- #### Defined in
79
-
80
- [src/IDatabaseConfig.ts:22](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConfig.ts#L22)
@@ -1,262 +0,0 @@
1
- [@breautek/storm](../README.md) / IDatabaseConnection
2
-
3
- # Interface: IDatabaseConnection
4
-
5
- ## Implemented by
6
-
7
- - [`DatabaseConnection`](../classes/DatabaseConnection.md)
8
- - [`ManagedDatabaseConnection`](../classes/ManagedDatabaseConnection.md)
9
-
10
- ## Table of contents
11
-
12
- ### Methods
13
-
14
- - [close](IDatabaseConnection.md#close)
15
- - [commit](IDatabaseConnection.md#commit)
16
- - [getAPI](IDatabaseConnection.md#getapi)
17
- - [getInstantiationStack](IDatabaseConnection.md#getinstantiationstack)
18
- - [getTimeout](IDatabaseConnection.md#gettimeout)
19
- - [isClosed](IDatabaseConnection.md#isclosed)
20
- - [isReadOnly](IDatabaseConnection.md#isreadonly)
21
- - [isTransaction](IDatabaseConnection.md#istransaction)
22
- - [query](IDatabaseConnection.md#query)
23
- - [rollback](IDatabaseConnection.md#rollback)
24
- - [setInstantiationStack](IDatabaseConnection.md#setinstantiationstack)
25
- - [setTimeout](IDatabaseConnection.md#settimeout)
26
- - [startTransaction](IDatabaseConnection.md#starttransaction)
27
- - [stream](IDatabaseConnection.md#stream)
28
-
29
- ## Methods
30
-
31
- ### close
32
-
33
- ▸ **close**(`forceClose?`): `Promise`<`void`\>
34
-
35
- #### Parameters
36
-
37
- | Name | Type |
38
- | :------ | :------ |
39
- | `forceClose?` | `boolean` |
40
-
41
- #### Returns
42
-
43
- `Promise`<`void`\>
44
-
45
- #### Defined in
46
-
47
- [src/IDatabaseConnection.ts:30](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L30)
48
-
49
- ___
50
-
51
- ### commit
52
-
53
- ▸ **commit**(): `Promise`<`void`\>
54
-
55
- #### Returns
56
-
57
- `Promise`<`void`\>
58
-
59
- #### Defined in
60
-
61
- [src/IDatabaseConnection.ts:34](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L34)
62
-
63
- ___
64
-
65
- ### getAPI
66
-
67
- ▸ **getAPI**(): `any`
68
-
69
- #### Returns
70
-
71
- `any`
72
-
73
- #### Defined in
74
-
75
- [src/IDatabaseConnection.ts:24](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L24)
76
-
77
- ___
78
-
79
- ### getInstantiationStack
80
-
81
- ▸ **getInstantiationStack**(): `string`
82
-
83
- #### Returns
84
-
85
- `string`
86
-
87
- #### Defined in
88
-
89
- [src/IDatabaseConnection.ts:23](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L23)
90
-
91
- ___
92
-
93
- ### getTimeout
94
-
95
- ▸ **getTimeout**(): `number`
96
-
97
- #### Returns
98
-
99
- `number`
100
-
101
- #### Defined in
102
-
103
- [src/IDatabaseConnection.ts:27](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L27)
104
-
105
- ___
106
-
107
- ### isClosed
108
-
109
- ▸ **isClosed**(): `boolean`
110
-
111
- #### Returns
112
-
113
- `boolean`
114
-
115
- #### Defined in
116
-
117
- [src/IDatabaseConnection.ts:31](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L31)
118
-
119
- ___
120
-
121
- ### isReadOnly
122
-
123
- ▸ **isReadOnly**(): `boolean`
124
-
125
- #### Returns
126
-
127
- `boolean`
128
-
129
- #### Defined in
130
-
131
- [src/IDatabaseConnection.ts:25](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L25)
132
-
133
- ___
134
-
135
- ### isTransaction
136
-
137
- ▸ **isTransaction**(): `boolean`
138
-
139
- #### Returns
140
-
141
- `boolean`
142
-
143
- #### Defined in
144
-
145
- [src/IDatabaseConnection.ts:33](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L33)
146
-
147
- ___
148
-
149
- ### query
150
-
151
- ▸ **query**(`query`, `params?`): `Promise`<`any`\>
152
-
153
- #### Parameters
154
-
155
- | Name | Type |
156
- | :------ | :------ |
157
- | `query` | [`IQueryable`](IQueryable.md)<`any`\> |
158
- | `params?` | `any` |
159
-
160
- #### Returns
161
-
162
- `Promise`<`any`\>
163
-
164
- #### Defined in
165
-
166
- [src/IDatabaseConnection.ts:28](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L28)
167
-
168
- ___
169
-
170
- ### rollback
171
-
172
- ▸ **rollback**(): `Promise`<`void`\>
173
-
174
- #### Returns
175
-
176
- `Promise`<`void`\>
177
-
178
- #### Defined in
179
-
180
- [src/IDatabaseConnection.ts:35](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L35)
181
-
182
- ___
183
-
184
- ### setInstantiationStack
185
-
186
- ▸ **setInstantiationStack**(`stack`): `void`
187
-
188
- #### Parameters
189
-
190
- | Name | Type |
191
- | :------ | :------ |
192
- | `stack` | `string` |
193
-
194
- #### Returns
195
-
196
- `void`
197
-
198
- #### Defined in
199
-
200
- [src/IDatabaseConnection.ts:22](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L22)
201
-
202
- ___
203
-
204
- ### setTimeout
205
-
206
- ▸ **setTimeout**(`timeout`): `void`
207
-
208
- #### Parameters
209
-
210
- | Name | Type |
211
- | :------ | :------ |
212
- | `timeout` | `number` |
213
-
214
- #### Returns
215
-
216
- `void`
217
-
218
- #### Defined in
219
-
220
- [src/IDatabaseConnection.ts:26](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L26)
221
-
222
- ___
223
-
224
- ### startTransaction
225
-
226
- ▸ **startTransaction**(`level?`): `Promise`<`void`\>
227
-
228
- #### Parameters
229
-
230
- | Name | Type |
231
- | :------ | :------ |
232
- | `level?` | [`IsolationLevel`](../enums/IsolationLevel.md) |
233
-
234
- #### Returns
235
-
236
- `Promise`<`void`\>
237
-
238
- #### Defined in
239
-
240
- [src/IDatabaseConnection.ts:32](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L32)
241
-
242
- ___
243
-
244
- ### stream
245
-
246
- ▸ **stream**(`query`, `params?`, `streamOptions?`): `Readable`
247
-
248
- #### Parameters
249
-
250
- | Name | Type |
251
- | :------ | :------ |
252
- | `query` | [`IQueryable`](IQueryable.md)<`any`\> |
253
- | `params?` | `any` |
254
- | `streamOptions?` | `any` |
255
-
256
- #### Returns
257
-
258
- `Readable`
259
-
260
- #### Defined in
261
-
262
- [src/IDatabaseConnection.ts:29](https://github.com/breautek/storm/blob/3dcafe4/src/IDatabaseConnection.ts#L29)
@@ -1,63 +0,0 @@
1
- [@breautek/storm](../README.md) / IErrorResponse
2
-
3
- # Interface: IErrorResponse
4
-
5
- ## Table of contents
6
-
7
- ### Properties
8
-
9
- - [code](IErrorResponse.md#code)
10
- - [details](IErrorResponse.md#details)
11
- - [locale](IErrorResponse.md#locale)
12
- - [message](IErrorResponse.md#message)
13
- - [name](IErrorResponse.md#name)
14
-
15
- ## Properties
16
-
17
- ### code
18
-
19
- • **code**: `number`
20
-
21
- #### Defined in
22
-
23
- [src/StormError.ts:37](https://github.com/breautek/storm/blob/3dcafe4/src/StormError.ts#L37)
24
-
25
- ___
26
-
27
- ### details
28
-
29
- • **details**: [`IAdditionalErrorDetails`](IAdditionalErrorDetails.md)
30
-
31
- #### Defined in
32
-
33
- [src/StormError.ts:38](https://github.com/breautek/storm/blob/3dcafe4/src/StormError.ts#L38)
34
-
35
- ___
36
-
37
- ### locale
38
-
39
- • **locale**: `ILocale`
40
-
41
- #### Defined in
42
-
43
- [src/StormError.ts:36](https://github.com/breautek/storm/blob/3dcafe4/src/StormError.ts#L36)
44
-
45
- ___
46
-
47
- ### message
48
-
49
- • **message**: `string`
50
-
51
- #### Defined in
52
-
53
- [src/StormError.ts:35](https://github.com/breautek/storm/blob/3dcafe4/src/StormError.ts#L35)
54
-
55
- ___
56
-
57
- ### name
58
-
59
- • **name**: `string`
60
-
61
- #### Defined in
62
-
63
- [src/StormError.ts:34](https://github.com/breautek/storm/blob/3dcafe4/src/StormError.ts#L34)
@@ -1,30 +0,0 @@
1
- [@breautek/storm](../README.md) / IFormData
2
-
3
- # Interface: IFormData
4
-
5
- ## Table of contents
6
-
7
- ### Properties
8
-
9
- - [fields](IFormData.md#fields)
10
- - [files](IFormData.md#files)
11
-
12
- ## Properties
13
-
14
- ### fields
15
-
16
- • **fields**: [`Fields`](formidable.Fields.md)
17
-
18
- #### Defined in
19
-
20
- [src/IFormData.ts:20](https://github.com/breautek/storm/blob/3dcafe4/src/IFormData.ts#L20)
21
-
22
- ___
23
-
24
- ### files
25
-
26
- • **files**: [`Files`](formidable.Files.md)
27
-
28
- #### Defined in
29
-
30
- [src/IFormData.ts:21](https://github.com/breautek/storm/blob/3dcafe4/src/IFormData.ts#L21)
@@ -1,31 +0,0 @@
1
- [@breautek/storm](../README.md) / IHandler
2
-
3
- # Interface: IHandler<TApplication\>
4
-
5
- ## Type parameters
6
-
7
- | Name | Type |
8
- | :------ | :------ |
9
- | `TApplication` | extends [`Application`](../classes/Application.md) = [`Application`](../classes/Application.md) |
10
-
11
- ## Table of contents
12
-
13
- ### Constructors
14
-
15
- - [constructor](IHandler.md#constructor)
16
-
17
- ## Constructors
18
-
19
- ### constructor
20
-
21
- • **new IHandler**(`app`)
22
-
23
- #### Parameters
24
-
25
- | Name | Type |
26
- | :------ | :------ |
27
- | `app` | `TApplication` |
28
-
29
- #### Defined in
30
-
31
- [src/IHandler.ts:21](https://github.com/breautek/storm/blob/3dcafe4/src/IHandler.ts#L21)
@@ -1,41 +0,0 @@
1
- [@breautek/storm](../README.md) / IInsertQueryResult
2
-
3
- # Interface: IInsertQueryResult
4
-
5
- ## Table of contents
6
-
7
- ### Properties
8
-
9
- - [affectedRows](IInsertQueryResult.md#affectedrows)
10
- - [changedRows](IInsertQueryResult.md#changedrows)
11
- - [insertId](IInsertQueryResult.md#insertid)
12
-
13
- ## Properties
14
-
15
- ### affectedRows
16
-
17
- • **affectedRows**: `number`
18
-
19
- #### Defined in
20
-
21
- [src/IInsertQueryResult.ts:19](https://github.com/breautek/storm/blob/3dcafe4/src/IInsertQueryResult.ts#L19)
22
-
23
- ___
24
-
25
- ### changedRows
26
-
27
- • **changedRows**: `number`
28
-
29
- #### Defined in
30
-
31
- [src/IInsertQueryResult.ts:20](https://github.com/breautek/storm/blob/3dcafe4/src/IInsertQueryResult.ts#L20)
32
-
33
- ___
34
-
35
- ### insertId
36
-
37
- • **insertId**: `number`
38
-
39
- #### Defined in
40
-
41
- [src/IInsertQueryResult.ts:18](https://github.com/breautek/storm/blob/3dcafe4/src/IInsertQueryResult.ts#L18)
@@ -1,19 +0,0 @@
1
- [@breautek/storm](../README.md) / IJWTVerifyOptions
2
-
3
- # Interface: IJWTVerifyOptions
4
-
5
- ## Table of contents
6
-
7
- ### Properties
8
-
9
- - [enableExpiration](IJWTVerifyOptions.md#enableexpiration)
10
-
11
- ## Properties
12
-
13
- ### enableExpiration
14
-
15
- • **enableExpiration**: `boolean`
16
-
17
- #### Defined in
18
-
19
- [src/IJWTVerifyOptions.ts:18](https://github.com/breautek/storm/blob/3dcafe4/src/IJWTVerifyOptions.ts#L18)
@@ -1,7 +0,0 @@
1
- [@breautek/storm](../README.md) / IParameterMap
2
-
3
- # Interface: IParameterMap
4
-
5
- ## Indexable
6
-
7
- ▪ [key: `string`]: `string`