@breautek/storm 5.0.2 → 6.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.
- package/CHANGELOG.md +21 -0
- package/bt-config-defaults.json +0 -1
- package/bt-config-sample.jsonc +41 -7
- package/docs/assets/highlight.css +13 -6
- package/docs/assets/search.js +1 -1
- package/docs/classes/Application.html +142 -84
- package/docs/classes/BackendAuthenticationMiddleware.html +6 -4
- package/docs/classes/CORSMiddleware.html +10 -8
- package/docs/classes/ConfigLoader.html +5 -3
- package/docs/classes/Database.html +16 -14
- package/docs/classes/DatabaseCastObject.html +7 -5
- package/docs/classes/DatabaseConnection.html +23 -21
- package/docs/classes/DatabaseQueryError.html +14 -12
- package/docs/classes/DeadLockError.html +14 -12
- package/docs/classes/DiskSpaceError.html +14 -12
- package/docs/classes/DropTemporaryTableQuery.html +12 -10
- package/docs/classes/DuplicateEntryError.html +14 -12
- package/docs/classes/EntityNotFoundError.html +14 -12
- package/docs/classes/ExpiredTokenError.html +14 -12
- package/docs/classes/Handler.html +17 -15
- package/docs/classes/InternalError.html +14 -12
- package/docs/classes/InvalidCredentialsError.html +14 -12
- package/docs/classes/InvalidValueError.html +14 -12
- package/docs/classes/LineString.html +8 -6
- package/docs/classes/LockWaitTimeoutError.html +14 -12
- package/docs/classes/ManagedDatabaseConnection.html +23 -21
- package/docs/classes/Middleware.html +7 -5
- package/docs/classes/MissingConfigError.html +14 -12
- package/docs/classes/MissingParameterError.html +14 -12
- package/docs/classes/MySQLConnection.html +24 -22
- package/docs/classes/MySQLDatabase.html +17 -15
- package/docs/classes/NotImplementedError.html +14 -12
- package/docs/classes/Point.html +8 -6
- package/docs/classes/Polygon.html +8 -6
- package/docs/classes/Query.html +12 -10
- package/docs/classes/RawError.html +14 -12
- package/docs/classes/RawQuery.html +12 -10
- package/docs/classes/Request.html +22 -20
- package/docs/classes/Response.html +15 -13
- package/docs/classes/ResponseData.html +11 -9
- package/docs/classes/ServiceProvider.html +19 -17
- package/docs/classes/ServiceResponse.html +9 -7
- package/docs/classes/SetSessionVariableQuery.html +12 -10
- package/docs/classes/StormError.html +14 -12
- package/docs/classes/TemporaryTableQuery.html +12 -10
- package/docs/classes/Token.html +6 -4
- package/docs/classes/TokenManager.html +8 -6
- package/docs/classes/Transaction.html +10 -8
- package/docs/classes/UnauthorizedAccessError.html +14 -12
- package/docs/enums/ErrorCode.html +13 -11
- package/docs/enums/ExitCode.html +6 -4
- package/docs/enums/HTTPMethod.html +8 -6
- package/docs/enums/IsolationLevel.html +8 -6
- package/docs/enums/JWTError.html +6 -4
- package/docs/enums/StatusCode.html +52 -50
- package/docs/functions/formidable-1.html +3 -1
- package/docs/functions/getInstance.html +7 -2
- package/docs/index.html +6 -2
- package/docs/interfaces/IAdditionalErrorDetails.html +4 -2
- package/docs/interfaces/IAuthTokenData.html +3 -1
- package/docs/interfaces/ICloudwatchConfig.html +174 -0
- package/docs/interfaces/ICloudwatchCredentials.html +167 -0
- package/docs/interfaces/ICloudwatchStreamConfig.html +167 -0
- package/docs/interfaces/IConfig.html +14 -12
- package/docs/interfaces/IDatabaseConfig.html +10 -8
- package/docs/interfaces/IDatabaseConnection.html +18 -16
- package/docs/interfaces/IErrorResponse.html +9 -7
- package/docs/interfaces/IFormData.html +6 -4
- package/docs/interfaces/IHandler.html +5 -3
- package/docs/interfaces/IInsertQueryResult.html +7 -5
- package/docs/interfaces/IJWTVerifyOptions.html +5 -3
- package/docs/interfaces/IParameterMap.html +4 -2
- package/docs/interfaces/IQueryable.html +9 -7
- package/docs/interfaces/IRequestResponse.html +6 -4
- package/docs/interfaces/IServiceHeaders.html +4 -2
- package/docs/interfaces/ISetSessionVariableQueryInput.html +6 -4
- package/docs/interfaces/ITemporaryTableQueryInput.html +6 -4
- package/docs/interfaces/IUpdateQueryResult.html +6 -4
- package/docs/interfaces/formidable.EmitData.html +3 -1
- package/docs/interfaces/formidable.EventData.html +3 -1
- package/docs/interfaces/formidable.Fields.html +3 -1
- package/docs/interfaces/formidable.File.html +3 -1
- package/docs/interfaces/formidable.FileJSON.html +3 -1
- package/docs/interfaces/formidable.Files.html +3 -1
- package/docs/interfaces/formidable.Options.html +3 -1
- package/docs/interfaces/formidable.Part.html +30 -28
- package/docs/modules/formidable.html +3 -1
- package/docs/types/IDeleteQueryResult.html +4 -2
- package/docs/types/IHandlerError.html +4 -2
- package/docs/types/IHandlerResponse.html +4 -2
- package/docs/types/TCoordinate.html +4 -2
- package/docs/types/formidable.BufferEncoding.html +3 -1
- package/docs/types/formidable.DefaultOptions.html +3 -1
- package/docs/types/formidable.EnabledPlugins.html +3 -1
- package/docs/types/formidable.EventNames.html +3 -1
- package/docs/types/formidable.MappedParsers.html +3 -1
- package/docs/types/formidable.Plugin.html +3 -1
- package/docs/types/formidable.PluginFunction.html +3 -1
- package/docs/types/formidable.Plugins.html +3 -1
- package/lib/Application.d.ts +7 -3
- package/lib/Application.js +108 -63
- package/lib/Application.js.map +1 -1
- package/lib/Handler.js +0 -1
- package/lib/Handler.js.map +1 -1
- package/lib/IConfig.d.ts +15 -2
- package/lib/MySQLConnection.js +3 -3
- package/lib/MySQLConnection.js.map +1 -1
- package/lib/StormError.js.map +1 -1
- package/lib/api.d.ts +1 -2
- package/lib/api.js +2 -4
- package/lib/api.js.map +1 -1
- package/lib/instance.d.ts +8 -0
- package/lib/instance.js +8 -0
- package/lib/instance.js.map +1 -1
- package/package.json +11 -9
- package/src/Application.ts +140 -72
- package/src/BackendAuthenticationMiddleware.ts +2 -2
- package/src/Handler.ts +2 -3
- package/src/IConfig.ts +18 -2
- package/src/MySQLConnection.ts +3 -2
- package/src/StormError.ts +2 -2
- package/src/api.ts +6 -2
- package/src/instance.ts +8 -0
- package/docs/classes/DumpStream.html +0 -161
- package/lib/DumpStream.d.ts +0 -6
- package/lib/DumpStream.js +0 -28
- package/lib/DumpStream.js.map +0 -1
- package/src/DumpStream.ts +0 -28
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<ul class="tsd-hierarchy">
|
|
25
25
|
<li><a href="../interfaces/IDatabaseConnection.html" class="tsd-signature-type tsd-kind-interface">IDatabaseConnection</a></li></ul></section><aside class="tsd-sources">
|
|
26
26
|
<ul>
|
|
27
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
27
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L25">src/ManagedDatabaseConnection.ts:25</a></li></ul></aside>
|
|
28
28
|
<section class="tsd-panel-group tsd-index-group">
|
|
29
29
|
<section class="tsd-panel tsd-index-panel">
|
|
30
30
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
<h5><span class="tsd-kind-parameter">requiresWrite</span>: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = false</span></h5></li></ul></div>
|
|
70
70
|
<h4 class="tsd-returns-title">Returns <a href="ManagedDatabaseConnection.html" class="tsd-signature-type tsd-kind-class">ManagedDatabaseConnection</a></h4><aside class="tsd-sources">
|
|
71
71
|
<ul>
|
|
72
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
72
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L38">src/ManagedDatabaseConnection.ts:38</a></li></ul></aside></li></ul></section></section>
|
|
73
73
|
<section class="tsd-panel-group tsd-member-group">
|
|
74
74
|
<h2>Methods</h2>
|
|
75
75
|
<section class="tsd-panel tsd-member"><a id="close" class="tsd-anchor"></a>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
86
86
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#close">close</a></p>
|
|
87
87
|
<ul>
|
|
88
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
88
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L153">src/ManagedDatabaseConnection.ts:153</a></li></ul></aside></li></ul></section>
|
|
89
89
|
<section class="tsd-panel tsd-member"><a id="commit" class="tsd-anchor"></a>
|
|
90
90
|
<h3 class="tsd-anchor-link"><span>commit</span><a href="#commit" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
91
91
|
<ul class="tsd-signatures">
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
95
95
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#commit">commit</a></p>
|
|
96
96
|
<ul>
|
|
97
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
97
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L190">src/ManagedDatabaseConnection.ts:190</a></li></ul></aside></li></ul></section>
|
|
98
98
|
<section class="tsd-panel tsd-member"><a id="getAPI" class="tsd-anchor"></a>
|
|
99
99
|
<h3 class="tsd-anchor-link"><span>getAPI</span><a href="#getAPI" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
100
100
|
<ul class="tsd-signatures">
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4><aside class="tsd-sources">
|
|
104
104
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#getAPI">getAPI</a></p>
|
|
105
105
|
<ul>
|
|
106
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
106
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L238">src/ManagedDatabaseConnection.ts:238</a></li></ul></aside></li></ul></section>
|
|
107
107
|
<section class="tsd-panel tsd-member"><a id="getInstantiationStack" class="tsd-anchor"></a>
|
|
108
108
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Instantiation<wbr/>Stack</span><a href="#getInstantiationStack" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
109
109
|
<ul class="tsd-signatures">
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
113
113
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#getInstantiationStack">getInstantiationStack</a></p>
|
|
114
114
|
<ul>
|
|
115
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
115
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L105">src/ManagedDatabaseConnection.ts:105</a></li></ul></aside></li></ul></section>
|
|
116
116
|
<section class="tsd-panel tsd-member"><a id="getTimeout" class="tsd-anchor"></a>
|
|
117
117
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Timeout</span><a href="#getTimeout" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
118
118
|
<ul class="tsd-signatures">
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
122
122
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#getTimeout">getTimeout</a></p>
|
|
123
123
|
<ul>
|
|
124
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
124
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L130">src/ManagedDatabaseConnection.ts:130</a></li></ul></aside></li></ul></section>
|
|
125
125
|
<section class="tsd-panel tsd-member"><a id="hasConnection" class="tsd-anchor"></a>
|
|
126
126
|
<h3 class="tsd-anchor-link"><span>has<wbr/>Connection</span><a href="#hasConnection" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
127
127
|
<ul class="tsd-signatures">
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
<li class="tsd-description">
|
|
130
130
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
131
131
|
<ul>
|
|
132
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
132
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L92">src/ManagedDatabaseConnection.ts:92</a></li></ul></aside></li></ul></section>
|
|
133
133
|
<section class="tsd-panel tsd-member"><a id="isClosed" class="tsd-anchor"></a>
|
|
134
134
|
<h3 class="tsd-anchor-link"><span>is<wbr/>Closed</span><a href="#isClosed" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
135
135
|
<ul class="tsd-signatures">
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
139
139
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#isClosed">isClosed</a></p>
|
|
140
140
|
<ul>
|
|
141
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
141
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L75">src/ManagedDatabaseConnection.ts:75</a></li></ul></aside></li></ul></section>
|
|
142
142
|
<section class="tsd-panel tsd-member"><a id="isManaged" class="tsd-anchor"></a>
|
|
143
143
|
<h3 class="tsd-anchor-link"><span>is<wbr/>Managed</span><a href="#isManaged" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
144
144
|
<ul class="tsd-signatures">
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
<li class="tsd-description">
|
|
147
147
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
148
148
|
<ul>
|
|
149
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
149
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L88">src/ManagedDatabaseConnection.ts:88</a></li></ul></aside></li></ul></section>
|
|
150
150
|
<section class="tsd-panel tsd-member"><a id="isReadOnly" class="tsd-anchor"></a>
|
|
151
151
|
<h3 class="tsd-anchor-link"><span>is<wbr/>Read<wbr/>Only</span><a href="#isReadOnly" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
152
152
|
<ul class="tsd-signatures">
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
156
156
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#isReadOnly">isReadOnly</a></p>
|
|
157
157
|
<ul>
|
|
158
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
158
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L114">src/ManagedDatabaseConnection.ts:114</a></li></ul></aside></li></ul></section>
|
|
159
159
|
<section class="tsd-panel tsd-member"><a id="isTransaction" class="tsd-anchor"></a>
|
|
160
160
|
<h3 class="tsd-anchor-link"><span>is<wbr/>Transaction</span><a href="#isTransaction" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
161
161
|
<ul class="tsd-signatures">
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
165
165
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#isTransaction">isTransaction</a></p>
|
|
166
166
|
<ul>
|
|
167
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
167
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L181">src/ManagedDatabaseConnection.ts:181</a></li></ul></aside></li></ul></section>
|
|
168
168
|
<section class="tsd-panel tsd-member"><a id="isWriteRequired" class="tsd-anchor"></a>
|
|
169
169
|
<h3 class="tsd-anchor-link"><span>is<wbr/>Write<wbr/>Required</span><a href="#isWriteRequired" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
170
170
|
<ul class="tsd-signatures">
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
<li class="tsd-description">
|
|
173
173
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
|
174
174
|
<ul>
|
|
175
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
175
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L84">src/ManagedDatabaseConnection.ts:84</a></li></ul></aside></li></ul></section>
|
|
176
176
|
<section class="tsd-panel tsd-member"><a id="query" class="tsd-anchor"></a>
|
|
177
177
|
<h3 class="tsd-anchor-link"><span>query</span><a href="#query" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
178
178
|
<ul class="tsd-signatures">
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
189
189
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#query">query</a></p>
|
|
190
190
|
<ul>
|
|
191
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
191
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L140">src/ManagedDatabaseConnection.ts:140</a></li></ul></aside></li></ul></section>
|
|
192
192
|
<section class="tsd-panel tsd-member"><a id="rollback" class="tsd-anchor"></a>
|
|
193
193
|
<h3 class="tsd-anchor-link"><span>rollback</span><a href="#rollback" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
194
194
|
<ul class="tsd-signatures">
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
198
198
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#rollback">rollback</a></p>
|
|
199
199
|
<ul>
|
|
200
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
200
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L203">src/ManagedDatabaseConnection.ts:203</a></li></ul></aside></li></ul></section>
|
|
201
201
|
<section class="tsd-panel tsd-member"><a id="setConnection" class="tsd-anchor"></a>
|
|
202
202
|
<h3 class="tsd-anchor-link"><span>set<wbr/>Connection</span><a href="#setConnection" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
203
203
|
<ul class="tsd-signatures">
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
<h5><span class="tsd-kind-parameter">connection</span>: <a href="../interfaces/IDatabaseConnection.html" class="tsd-signature-type tsd-kind-interface">IDatabaseConnection</a></h5></li></ul></div>
|
|
211
211
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
212
212
|
<ul>
|
|
213
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
213
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L45">src/ManagedDatabaseConnection.ts:45</a></li></ul></aside></li></ul></section>
|
|
214
214
|
<section class="tsd-panel tsd-member"><a id="setInstantiationStack" class="tsd-anchor"></a>
|
|
215
215
|
<h3 class="tsd-anchor-link"><span>set<wbr/>Instantiation<wbr/>Stack</span><a href="#setInstantiationStack" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
216
216
|
<ul class="tsd-signatures">
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
225
225
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#setInstantiationStack">setInstantiationStack</a></p>
|
|
226
226
|
<ul>
|
|
227
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
227
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L96">src/ManagedDatabaseConnection.ts:96</a></li></ul></aside></li></ul></section>
|
|
228
228
|
<section class="tsd-panel tsd-member"><a id="setTimeout" class="tsd-anchor"></a>
|
|
229
229
|
<h3 class="tsd-anchor-link"><span>set<wbr/>Timeout</span><a href="#setTimeout" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
230
230
|
<ul class="tsd-signatures">
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
239
239
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#setTimeout">setTimeout</a></p>
|
|
240
240
|
<ul>
|
|
241
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
241
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L124">src/ManagedDatabaseConnection.ts:124</a></li></ul></aside></li></ul></section>
|
|
242
242
|
<section class="tsd-panel tsd-member"><a id="startTransaction" class="tsd-anchor"></a>
|
|
243
243
|
<h3 class="tsd-anchor-link"><span>start<wbr/>Transaction</span><a href="#startTransaction" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
244
244
|
<ul class="tsd-signatures">
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
253
253
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#startTransaction">startTransaction</a></p>
|
|
254
254
|
<ul>
|
|
255
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
255
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L168">src/ManagedDatabaseConnection.ts:168</a></li></ul></aside></li></ul></section>
|
|
256
256
|
<section class="tsd-panel tsd-member"><a id="stream" class="tsd-anchor"></a>
|
|
257
257
|
<h3 class="tsd-anchor-link"><span>stream</span><a href="#stream" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
258
258
|
<ul class="tsd-signatures">
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Readable</span></h4><aside class="tsd-sources">
|
|
271
271
|
<p>Implementation of <a href="../interfaces/IDatabaseConnection.html">IDatabaseConnection</a>.<a href="../interfaces/IDatabaseConnection.html#stream">stream</a></p>
|
|
272
272
|
<ul>
|
|
273
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
273
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/ManagedDatabaseConnection.ts#L149">src/ManagedDatabaseConnection.ts:149</a></li></ul></aside></li></ul></section></section></div>
|
|
274
274
|
<div class="col-sidebar">
|
|
275
275
|
<div class="page-menu">
|
|
276
276
|
<div class="tsd-navigation settings">
|
|
@@ -348,7 +348,6 @@
|
|
|
348
348
|
<li><a href="DeadLockError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Dead<wbr/>Lock<wbr/>Error</span></a></li>
|
|
349
349
|
<li><a href="DiskSpaceError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Disk<wbr/>Space<wbr/>Error</span></a></li>
|
|
350
350
|
<li><a href="DropTemporaryTableQuery.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Drop<wbr/>Temporary<wbr/>Table<wbr/>Query</span></a></li>
|
|
351
|
-
<li><a href="DumpStream.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Dump<wbr/>Stream</span></a></li>
|
|
352
351
|
<li><a href="DuplicateEntryError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Duplicate<wbr/>Entry<wbr/>Error</span></a></li>
|
|
353
352
|
<li><a href="EntityNotFoundError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Entity<wbr/>Not<wbr/>Found<wbr/>Error</span></a></li>
|
|
354
353
|
<li><a href="ExpiredTokenError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Expired<wbr/>Token<wbr/>Error</span></a></li>
|
|
@@ -384,6 +383,9 @@
|
|
|
384
383
|
<li><a href="UnauthorizedAccessError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Unauthorized<wbr/>Access<wbr/>Error</span></a></li>
|
|
385
384
|
<li><a href="../interfaces/IAdditionalErrorDetails.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IAdditional<wbr/>Error<wbr/>Details</span></a></li>
|
|
386
385
|
<li><a href="../interfaces/IAuthTokenData.html" class="tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IAuth<wbr/>Token<wbr/>Data</span></a></li>
|
|
386
|
+
<li><a href="../interfaces/ICloudwatchConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Config</span></a></li>
|
|
387
|
+
<li><a href="../interfaces/ICloudwatchCredentials.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Credentials</span></a></li>
|
|
388
|
+
<li><a href="../interfaces/ICloudwatchStreamConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Stream<wbr/>Config</span></a></li>
|
|
387
389
|
<li><a href="../interfaces/IConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IConfig</span></a></li>
|
|
388
390
|
<li><a href="../interfaces/IDatabaseConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IDatabase<wbr/>Config</span></a></li>
|
|
389
391
|
<li><a href="../interfaces/IDatabaseConnection.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IDatabase<wbr/>Connection</span></a></li>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<ul class="tsd-hierarchy">
|
|
23
23
|
<li><a href="CORSMiddleware.html" class="tsd-signature-type tsd-kind-class">CORSMiddleware</a></li></ul></li></ul></section><aside class="tsd-sources">
|
|
24
24
|
<ul>
|
|
25
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
25
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/Middleware.ts#L21">src/Middleware.ts:21</a></li></ul></aside>
|
|
26
26
|
<section class="tsd-panel-group tsd-index-group">
|
|
27
27
|
<section class="tsd-panel tsd-index-panel">
|
|
28
28
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<li class="tsd-description">
|
|
47
47
|
<h4 class="tsd-returns-title">Returns <a href="Middleware.html" class="tsd-signature-type tsd-kind-class">Middleware</a></h4><aside class="tsd-sources">
|
|
48
48
|
<ul>
|
|
49
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
49
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/Middleware.ts#L23">src/Middleware.ts:23</a></li></ul></aside></li></ul></section></section>
|
|
50
50
|
<section class="tsd-panel-group tsd-member-group">
|
|
51
51
|
<h2>Methods</h2>
|
|
52
52
|
<section class="tsd-panel tsd-member tsd-is-protected"><a id="_execute" class="tsd-anchor"></a>
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
<h5><span class="tsd-kind-parameter">response</span>: <a href="Response.html" class="tsd-signature-type tsd-kind-class">Response</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type ">Error</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/IErrorResponse.html" class="tsd-signature-type tsd-kind-interface">IErrorResponse</a><span class="tsd-signature-symbol">></span></h5></li></ul></div>
|
|
64
64
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol"><</span><a href="../interfaces/IRequestResponse.html" class="tsd-signature-type tsd-kind-interface">IRequestResponse</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
65
65
|
<ul>
|
|
66
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
66
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/Middleware.ts#L25">src/Middleware.ts:25</a></li></ul></aside></li></ul></section>
|
|
67
67
|
<section class="tsd-panel tsd-member"><a id="execute" class="tsd-anchor"></a>
|
|
68
68
|
<h3 class="tsd-anchor-link"><span>execute</span><a href="#execute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
69
69
|
<ul class="tsd-signatures">
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
<h5><span class="tsd-kind-parameter">response</span>: <a href="Response.html" class="tsd-signature-type tsd-kind-class">Response</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type ">Error</span><span class="tsd-signature-symbol"> | </span><a href="../interfaces/IErrorResponse.html" class="tsd-signature-type tsd-kind-interface">IErrorResponse</a><span class="tsd-signature-symbol">></span></h5></li></ul></div>
|
|
79
79
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Promise</span><span class="tsd-signature-symbol"><</span><a href="../interfaces/IRequestResponse.html" class="tsd-signature-type tsd-kind-interface">IRequestResponse</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
80
80
|
<ul>
|
|
81
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
81
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/Middleware.ts#L27">src/Middleware.ts:27</a></li></ul></aside></li></ul></section></section></div>
|
|
82
82
|
<div class="col-sidebar">
|
|
83
83
|
<div class="page-menu">
|
|
84
84
|
<div class="tsd-navigation settings">
|
|
@@ -140,7 +140,6 @@
|
|
|
140
140
|
<li><a href="DeadLockError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Dead<wbr/>Lock<wbr/>Error</span></a></li>
|
|
141
141
|
<li><a href="DiskSpaceError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Disk<wbr/>Space<wbr/>Error</span></a></li>
|
|
142
142
|
<li><a href="DropTemporaryTableQuery.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Drop<wbr/>Temporary<wbr/>Table<wbr/>Query</span></a></li>
|
|
143
|
-
<li><a href="DumpStream.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Dump<wbr/>Stream</span></a></li>
|
|
144
143
|
<li><a href="DuplicateEntryError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Duplicate<wbr/>Entry<wbr/>Error</span></a></li>
|
|
145
144
|
<li><a href="EntityNotFoundError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Entity<wbr/>Not<wbr/>Found<wbr/>Error</span></a></li>
|
|
146
145
|
<li><a href="ExpiredTokenError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Expired<wbr/>Token<wbr/>Error</span></a></li>
|
|
@@ -176,6 +175,9 @@
|
|
|
176
175
|
<li><a href="UnauthorizedAccessError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Unauthorized<wbr/>Access<wbr/>Error</span></a></li>
|
|
177
176
|
<li><a href="../interfaces/IAdditionalErrorDetails.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IAdditional<wbr/>Error<wbr/>Details</span></a></li>
|
|
178
177
|
<li><a href="../interfaces/IAuthTokenData.html" class="tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IAuth<wbr/>Token<wbr/>Data</span></a></li>
|
|
178
|
+
<li><a href="../interfaces/ICloudwatchConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Config</span></a></li>
|
|
179
|
+
<li><a href="../interfaces/ICloudwatchCredentials.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Credentials</span></a></li>
|
|
180
|
+
<li><a href="../interfaces/ICloudwatchStreamConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Stream<wbr/>Config</span></a></li>
|
|
179
181
|
<li><a href="../interfaces/IConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IConfig</span></a></li>
|
|
180
182
|
<li><a href="../interfaces/IDatabaseConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IDatabase<wbr/>Config</span></a></li>
|
|
181
183
|
<li><a href="../interfaces/IDatabaseConnection.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IDatabase<wbr/>Connection</span></a></li>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<ul class="tsd-hierarchy">
|
|
23
23
|
<li><span class="target">MissingConfigError</span></li></ul></li></ul></section><aside class="tsd-sources">
|
|
24
24
|
<ul>
|
|
25
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
25
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L26">src/MissingConfigError.ts:26</a></li></ul></aside>
|
|
26
26
|
<section class="tsd-panel-group tsd-index-group">
|
|
27
27
|
<section class="tsd-panel tsd-index-panel">
|
|
28
28
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
<h4 class="tsd-returns-title">Returns <a href="MissingConfigError.html" class="tsd-signature-type tsd-kind-class">MissingConfigError</a></h4><aside class="tsd-sources">
|
|
69
69
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#constructor">constructor</a></p>
|
|
70
70
|
<ul>
|
|
71
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
71
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L27">src/MissingConfigError.ts:27</a></li></ul></aside></li></ul></section></section>
|
|
72
72
|
<section class="tsd-panel-group tsd-member-group">
|
|
73
73
|
<h2>Properties</h2>
|
|
74
74
|
<section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><a id="message" class="tsd-anchor"></a>
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
<h4 class="tsd-returns-title">Returns <a href="../enums/ErrorCode.html" class="tsd-signature-type tsd-kind-enum">ErrorCode</a></h4><aside class="tsd-sources">
|
|
131
131
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getCode">getCode</a></p>
|
|
132
132
|
<ul>
|
|
133
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
133
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L37">src/MissingConfigError.ts:37</a></li></ul></aside></li></ul></section>
|
|
134
134
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getErrorResponse" class="tsd-anchor"></a>
|
|
135
135
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Error<wbr/>Response</span><a href="#getErrorResponse" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
136
136
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
<h4 class="tsd-returns-title">Returns <a href="../interfaces/IErrorResponse.html" class="tsd-signature-type tsd-kind-interface">IErrorResponse</a></h4><aside class="tsd-sources">
|
|
140
140
|
<p>Inherited from <a href="StormError.html">StormError</a>.<a href="StormError.html#getErrorResponse">getErrorResponse</a></p>
|
|
141
141
|
<ul>
|
|
142
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
142
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/StormError.ts#L76">src/StormError.ts:76</a></li></ul></aside></li></ul></section>
|
|
143
143
|
<section class="tsd-panel tsd-member"><a id="getExitCode" class="tsd-anchor"></a>
|
|
144
144
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Exit<wbr/>Code</span><a href="#getExitCode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
145
145
|
<ul class="tsd-signatures">
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
<h4 class="tsd-returns-title">Returns <a href="../enums/ExitCode.html" class="tsd-signature-type tsd-kind-enum">ExitCode</a></h4><aside class="tsd-sources">
|
|
149
149
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getExitCode">getExitCode</a></p>
|
|
150
150
|
<ul>
|
|
151
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
151
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L45">src/MissingConfigError.ts:45</a></li></ul></aside></li></ul></section>
|
|
152
152
|
<section class="tsd-panel tsd-member"><a id="getHTTPCode" class="tsd-anchor"></a>
|
|
153
153
|
<h3 class="tsd-anchor-link"><span>getHTTPCode</span><a href="#getHTTPCode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
154
154
|
<ul class="tsd-signatures">
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
<h4 class="tsd-returns-title">Returns <a href="../enums/StatusCode.html" class="tsd-signature-type tsd-kind-enum">StatusCode</a></h4><aside class="tsd-sources">
|
|
158
158
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getHTTPCode">getHTTPCode</a></p>
|
|
159
159
|
<ul>
|
|
160
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
160
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L41">src/MissingConfigError.ts:41</a></li></ul></aside></li></ul></section>
|
|
161
161
|
<section class="tsd-panel tsd-member"><a id="getLocaleCode" class="tsd-anchor"></a>
|
|
162
162
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Locale<wbr/>Code</span><a href="#getLocaleCode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
163
163
|
<ul class="tsd-signatures">
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
167
167
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getLocaleCode">getLocaleCode</a></p>
|
|
168
168
|
<ul>
|
|
169
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
169
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L49">src/MissingConfigError.ts:49</a></li></ul></aside></li></ul></section>
|
|
170
170
|
<section class="tsd-panel tsd-member"><a id="getLocaleParameters" class="tsd-anchor"></a>
|
|
171
171
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Locale<wbr/>Parameters</span><a href="#getLocaleParameters" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
172
172
|
<ul class="tsd-signatures">
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Record</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
176
176
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getLocaleParameters">getLocaleParameters</a></p>
|
|
177
177
|
<ul>
|
|
178
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
178
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L53">src/MissingConfigError.ts:53</a></li></ul></aside></li></ul></section>
|
|
179
179
|
<section class="tsd-panel tsd-member"><a id="getMessage" class="tsd-anchor"></a>
|
|
180
180
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Message</span><a href="#getMessage" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
181
181
|
<ul class="tsd-signatures">
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
185
185
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getMessage">getMessage</a></p>
|
|
186
186
|
<ul>
|
|
187
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
187
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/MissingConfigError.ts#L33">src/MissingConfigError.ts:33</a></li></ul></aside></li></ul></section>
|
|
188
188
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPrivateDetails" class="tsd-anchor"></a>
|
|
189
189
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Private<wbr/>Details</span><a href="#getPrivateDetails" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
190
190
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -196,7 +196,7 @@ They are kept secret from the client.</p>
|
|
|
196
196
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">IMissingConfigErrorDetails</span></h4><aside class="tsd-sources">
|
|
197
197
|
<p>Inherited from <a href="StormError.html">StormError</a>.<a href="StormError.html#getPrivateDetails">getPrivateDetails</a></p>
|
|
198
198
|
<ul>
|
|
199
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
199
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/StormError.ts#L68">src/StormError.ts:68</a></li></ul></aside></li></ul></section>
|
|
200
200
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPublicDetails" class="tsd-anchor"></a>
|
|
201
201
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Public<wbr/>Details</span><a href="#getPublicDetails" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
202
202
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -207,7 +207,7 @@ They are kept secret from the client.</p>
|
|
|
207
207
|
<h4 class="tsd-returns-title">Returns <a href="../interfaces/IAdditionalErrorDetails.html" class="tsd-signature-type tsd-kind-interface">IAdditionalErrorDetails</a></h4><aside class="tsd-sources">
|
|
208
208
|
<p>Inherited from <a href="StormError.html">StormError</a>.<a href="StormError.html#getPublicDetails">getPublicDetails</a></p>
|
|
209
209
|
<ul>
|
|
210
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
210
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/50d4643/src/StormError.ts#L60">src/StormError.ts:60</a></li></ul></aside></li></ul></section>
|
|
211
211
|
<section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><a id="captureStackTrace" class="tsd-anchor"></a>
|
|
212
212
|
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>capture<wbr/>Stack<wbr/>Trace</span><a href="#captureStackTrace" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
213
213
|
<ul class="tsd-signatures tsd-is-inherited tsd-is-external">
|
|
@@ -300,7 +300,6 @@ They are kept secret from the client.</p>
|
|
|
300
300
|
<li><a href="DeadLockError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Dead<wbr/>Lock<wbr/>Error</span></a></li>
|
|
301
301
|
<li><a href="DiskSpaceError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Disk<wbr/>Space<wbr/>Error</span></a></li>
|
|
302
302
|
<li><a href="DropTemporaryTableQuery.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Drop<wbr/>Temporary<wbr/>Table<wbr/>Query</span></a></li>
|
|
303
|
-
<li><a href="DumpStream.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Dump<wbr/>Stream</span></a></li>
|
|
304
303
|
<li><a href="DuplicateEntryError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Duplicate<wbr/>Entry<wbr/>Error</span></a></li>
|
|
305
304
|
<li><a href="EntityNotFoundError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Entity<wbr/>Not<wbr/>Found<wbr/>Error</span></a></li>
|
|
306
305
|
<li><a href="ExpiredTokenError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Expired<wbr/>Token<wbr/>Error</span></a></li>
|
|
@@ -336,6 +335,9 @@ They are kept secret from the client.</p>
|
|
|
336
335
|
<li><a href="UnauthorizedAccessError.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Unauthorized<wbr/>Access<wbr/>Error</span></a></li>
|
|
337
336
|
<li><a href="../interfaces/IAdditionalErrorDetails.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IAdditional<wbr/>Error<wbr/>Details</span></a></li>
|
|
338
337
|
<li><a href="../interfaces/IAuthTokenData.html" class="tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IAuth<wbr/>Token<wbr/>Data</span></a></li>
|
|
338
|
+
<li><a href="../interfaces/ICloudwatchConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Config</span></a></li>
|
|
339
|
+
<li><a href="../interfaces/ICloudwatchCredentials.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Credentials</span></a></li>
|
|
340
|
+
<li><a href="../interfaces/ICloudwatchStreamConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>ICloudwatch<wbr/>Stream<wbr/>Config</span></a></li>
|
|
339
341
|
<li><a href="../interfaces/IConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IConfig</span></a></li>
|
|
340
342
|
<li><a href="../interfaces/IDatabaseConfig.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IDatabase<wbr/>Config</span></a></li>
|
|
341
343
|
<li><a href="../interfaces/IDatabaseConnection.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg><span>IDatabase<wbr/>Connection</span></a></li>
|