@breautek/storm 5.0.2 → 6.0.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 +14 -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 +123 -80
- 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 +4 -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 +3 -0
- package/lib/Application.js +105 -63
- package/lib/Application.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/api.d.ts +1 -2
- package/lib/api.js +2 -4
- package/lib/api.js.map +1 -1
- package/package.json +6 -4
- package/src/Application.ts +131 -68
- package/src/IConfig.ts +18 -2
- package/src/MySQLConnection.ts +2 -1
- package/src/api.ts +6 -2
- 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
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<ul class="tsd-hierarchy">
|
|
23
23
|
<li><span class="target">InvalidCredentialsError</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/78cd5a3/src/InvalidCredentialsError.ts#L21">src/InvalidCredentialsError.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">
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
<h4 class="tsd-returns-title">Returns <a href="InvalidCredentialsError.html" class="tsd-signature-type tsd-kind-class">InvalidCredentialsError</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/78cd5a3/src/InvalidCredentialsError.ts#L23">src/InvalidCredentialsError.ts:23</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/78cd5a3/src/InvalidCredentialsError.ts#L31">src/InvalidCredentialsError.ts:31</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/78cd5a3/src/StormError.ts#L76">src/StormError.ts:76</a></li></ul></aside></li></ul></section>
|
|
143
143
|
<section class="tsd-panel tsd-member tsd-is-inherited"><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 tsd-is-inherited">
|
|
@@ -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>Inherited from <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/78cd5a3/src/StormError.ts#L97">src/StormError.ts:97</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/78cd5a3/src/InvalidCredentialsError.ts#L35">src/InvalidCredentialsError.ts:35</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/78cd5a3/src/InvalidCredentialsError.ts#L39">src/InvalidCredentialsError.ts:39</a></li></ul></aside></li></ul></section>
|
|
170
170
|
<section class="tsd-panel tsd-member tsd-is-inherited"><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 tsd-is-inherited">
|
|
@@ -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>Inherited from <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/78cd5a3/src/StormError.ts#L93">src/StormError.ts:93</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/78cd5a3/src/InvalidCredentialsError.ts#L27">src/InvalidCredentialsError.ts:27</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">any</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/78cd5a3/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/78cd5a3/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>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<ul class="tsd-hierarchy">
|
|
23
23
|
<li><span class="target">InvalidValueError</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/78cd5a3/src/InvalidValueError.ts#L21">src/InvalidValueError.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">
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<h4 class="tsd-returns-title">Returns <a href="InvalidValueError.html" class="tsd-signature-type tsd-kind-class">InvalidValueError</a></h4><aside class="tsd-sources">
|
|
73
73
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#constructor">constructor</a></p>
|
|
74
74
|
<ul>
|
|
75
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
75
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/InvalidValueError.ts#L27">src/InvalidValueError.ts:27</a></li></ul></aside></li></ul></section></section>
|
|
76
76
|
<section class="tsd-panel-group tsd-member-group">
|
|
77
77
|
<h2>Properties</h2>
|
|
78
78
|
<section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><a id="message" class="tsd-anchor"></a>
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
<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">
|
|
135
135
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getCode">getCode</a></p>
|
|
136
136
|
<ul>
|
|
137
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
137
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/InvalidValueError.ts#L40">src/InvalidValueError.ts:40</a></li></ul></aside></li></ul></section>
|
|
138
138
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getErrorResponse" class="tsd-anchor"></a>
|
|
139
139
|
<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>
|
|
140
140
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<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">
|
|
144
144
|
<p>Inherited from <a href="StormError.html">StormError</a>.<a href="StormError.html#getErrorResponse">getErrorResponse</a></p>
|
|
145
145
|
<ul>
|
|
146
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
146
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L76">src/StormError.ts:76</a></li></ul></aside></li></ul></section>
|
|
147
147
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getExitCode" class="tsd-anchor"></a>
|
|
148
148
|
<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>
|
|
149
149
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
<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">
|
|
153
153
|
<p>Inherited from <a href="StormError.html">StormError</a>.<a href="StormError.html#getExitCode">getExitCode</a></p>
|
|
154
154
|
<ul>
|
|
155
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
155
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L97">src/StormError.ts:97</a></li></ul></aside></li></ul></section>
|
|
156
156
|
<section class="tsd-panel tsd-member"><a id="getHTTPCode" class="tsd-anchor"></a>
|
|
157
157
|
<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>
|
|
158
158
|
<ul class="tsd-signatures">
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
<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">
|
|
162
162
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getHTTPCode">getHTTPCode</a></p>
|
|
163
163
|
<ul>
|
|
164
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
164
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/InvalidValueError.ts#L44">src/InvalidValueError.ts:44</a></li></ul></aside></li></ul></section>
|
|
165
165
|
<section class="tsd-panel tsd-member"><a id="getLocaleCode" class="tsd-anchor"></a>
|
|
166
166
|
<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>
|
|
167
167
|
<ul class="tsd-signatures">
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
171
171
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getLocaleCode">getLocaleCode</a></p>
|
|
172
172
|
<ul>
|
|
173
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
173
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/InvalidValueError.ts#L48">src/InvalidValueError.ts:48</a></li></ul></aside></li></ul></section>
|
|
174
174
|
<section class="tsd-panel tsd-member"><a id="getLocaleParameters" class="tsd-anchor"></a>
|
|
175
175
|
<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>
|
|
176
176
|
<ul class="tsd-signatures">
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
<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">
|
|
180
180
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getLocaleParameters">getLocaleParameters</a></p>
|
|
181
181
|
<ul>
|
|
182
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
182
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/InvalidValueError.ts#L52">src/InvalidValueError.ts:52</a></li></ul></aside></li></ul></section>
|
|
183
183
|
<section class="tsd-panel tsd-member"><a id="getMessage" class="tsd-anchor"></a>
|
|
184
184
|
<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>
|
|
185
185
|
<ul class="tsd-signatures">
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
189
189
|
<p>Overrides <a href="StormError.html">StormError</a>.<a href="StormError.html#getMessage">getMessage</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/78cd5a3/src/InvalidValueError.ts#L35">src/InvalidValueError.ts:35</a></li></ul></aside></li></ul></section>
|
|
192
192
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPrivateDetails" class="tsd-anchor"></a>
|
|
193
193
|
<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>
|
|
194
194
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -207,7 +207,7 @@ They are kept secret from the client.</p>
|
|
|
207
207
|
<h5><span class="tsd-kind-property">variable</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></h5></li></ul><aside class="tsd-sources">
|
|
208
208
|
<p>Inherited from <a href="StormError.html">StormError</a>.<a href="StormError.html#getPrivateDetails">getPrivateDetails</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/78cd5a3/src/StormError.ts#L68">src/StormError.ts:68</a></li></ul></aside></li></ul></section>
|
|
211
211
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPublicDetails" class="tsd-anchor"></a>
|
|
212
212
|
<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>
|
|
213
213
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -218,7 +218,7 @@ They are kept secret from the client.</p>
|
|
|
218
218
|
<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">
|
|
219
219
|
<p>Inherited from <a href="StormError.html">StormError</a>.<a href="StormError.html#getPublicDetails">getPublicDetails</a></p>
|
|
220
220
|
<ul>
|
|
221
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
221
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L60">src/StormError.ts:60</a></li></ul></aside></li></ul></section>
|
|
222
222
|
<section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><a id="captureStackTrace" class="tsd-anchor"></a>
|
|
223
223
|
<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>
|
|
224
224
|
<ul class="tsd-signatures tsd-is-inherited tsd-is-external">
|
|
@@ -311,7 +311,6 @@ They are kept secret from the client.</p>
|
|
|
311
311
|
<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>
|
|
312
312
|
<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>
|
|
313
313
|
<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>
|
|
314
|
-
<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>
|
|
315
314
|
<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>
|
|
316
315
|
<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>
|
|
317
316
|
<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>
|
|
@@ -347,6 +346,9 @@ They are kept secret from the client.</p>
|
|
|
347
346
|
<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>
|
|
348
347
|
<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>
|
|
349
348
|
<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>
|
|
349
|
+
<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>
|
|
350
|
+
<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>
|
|
351
|
+
<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>
|
|
350
352
|
<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>
|
|
351
353
|
<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>
|
|
352
354
|
<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">LineString</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/78cd5a3/src/LineString.ts#L20">src/LineString.ts:20</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">
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
<h4 class="tsd-returns-title">Returns <a href="LineString.html" class="tsd-signature-type tsd-kind-class">LineString</a></h4><aside class="tsd-sources">
|
|
54
54
|
<p>Overrides <a href="DatabaseCastObject.html">DatabaseCastObject</a>.<a href="DatabaseCastObject.html#constructor">constructor</a></p>
|
|
55
55
|
<ul>
|
|
56
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
56
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/LineString.ts#L23">src/LineString.ts:23</a></li></ul></aside></li></ul></section></section>
|
|
57
57
|
<section class="tsd-panel-group tsd-member-group">
|
|
58
58
|
<h2>Methods</h2>
|
|
59
59
|
<section class="tsd-panel tsd-member tsd-is-protected"><a id="_toSQLString" class="tsd-anchor"></a>
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
65
65
|
<p>Overrides <a href="DatabaseCastObject.html">DatabaseCastObject</a>.<a href="DatabaseCastObject.html#_toSQLString">_toSQLString</a></p>
|
|
66
66
|
<ul>
|
|
67
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
67
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/LineString.ts#L29">src/LineString.ts:29</a></li></ul></aside></li></ul></section>
|
|
68
68
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="escape" class="tsd-anchor"></a>
|
|
69
69
|
<h3 class="tsd-anchor-link"><span>escape</span><a href="#escape" 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>
|
|
70
70
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
79
79
|
<p>Inherited from <a href="DatabaseCastObject.html">DatabaseCastObject</a>.<a href="DatabaseCastObject.html#escape">escape</a></p>
|
|
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/78cd5a3/src/DatabaseCastObject.ts#L24">src/DatabaseCastObject.ts:24</a></li></ul></aside></li></ul></section>
|
|
82
82
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="toSqlString" class="tsd-anchor"></a>
|
|
83
83
|
<h3 class="tsd-anchor-link"><span>to<wbr/>Sql<wbr/>String</span><a href="#toSqlString" 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>
|
|
84
84
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
88
88
|
<p>Inherited from <a href="DatabaseCastObject.html">DatabaseCastObject</a>.<a href="DatabaseCastObject.html#toSqlString">toSqlString</a></p>
|
|
89
89
|
<ul>
|
|
90
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
90
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/DatabaseCastObject.ts#L20">src/DatabaseCastObject.ts:20</a></li></ul></aside></li></ul></section></section></div>
|
|
91
91
|
<div class="col-sidebar">
|
|
92
92
|
<div class="page-menu">
|
|
93
93
|
<div class="tsd-navigation settings">
|
|
@@ -150,7 +150,6 @@
|
|
|
150
150
|
<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>
|
|
151
151
|
<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>
|
|
152
152
|
<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>
|
|
153
|
-
<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>
|
|
154
153
|
<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>
|
|
155
154
|
<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>
|
|
156
155
|
<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>
|
|
@@ -186,6 +185,9 @@
|
|
|
186
185
|
<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>
|
|
187
186
|
<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>
|
|
188
187
|
<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>
|
|
188
|
+
<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>
|
|
189
|
+
<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>
|
|
190
|
+
<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>
|
|
189
191
|
<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>
|
|
190
192
|
<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>
|
|
191
193
|
<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>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<ul class="tsd-hierarchy">
|
|
26
26
|
<li><span class="target">LockWaitTimeoutError</span></li></ul></li></ul></section><aside class="tsd-sources">
|
|
27
27
|
<ul>
|
|
28
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
28
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/LockWaitTimeoutError.ts#L22">src/LockWaitTimeoutError.ts:22</a></li></ul></aside>
|
|
29
29
|
<section class="tsd-panel-group tsd-index-group">
|
|
30
30
|
<section class="tsd-panel tsd-index-panel">
|
|
31
31
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
<h4 class="tsd-returns-title">Returns <a href="LockWaitTimeoutError.html" class="tsd-signature-type tsd-kind-class">LockWaitTimeoutError</a></h4><aside class="tsd-sources">
|
|
74
74
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#constructor">constructor</a></p>
|
|
75
75
|
<ul>
|
|
76
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
76
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/DatabaseQueryError.ts#L25">src/DatabaseQueryError.ts:25</a></li></ul></aside></li></ul></section></section>
|
|
77
77
|
<section class="tsd-panel-group tsd-member-group">
|
|
78
78
|
<h2>Properties</h2>
|
|
79
79
|
<section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><a id="message" class="tsd-anchor"></a>
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
136
136
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getCode">getCode</a></p>
|
|
137
137
|
<ul>
|
|
138
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
138
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/DatabaseQueryError.ts#L36">src/DatabaseQueryError.ts:36</a></li></ul></aside></li></ul></section>
|
|
139
139
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getErrorResponse" class="tsd-anchor"></a>
|
|
140
140
|
<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>
|
|
141
141
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
<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">
|
|
145
145
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getErrorResponse">getErrorResponse</a></p>
|
|
146
146
|
<ul>
|
|
147
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
147
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L76">src/StormError.ts:76</a></li></ul></aside></li></ul></section>
|
|
148
148
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getExitCode" class="tsd-anchor"></a>
|
|
149
149
|
<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>
|
|
150
150
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
<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">
|
|
154
154
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getExitCode">getExitCode</a></p>
|
|
155
155
|
<ul>
|
|
156
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
156
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L97">src/StormError.ts:97</a></li></ul></aside></li></ul></section>
|
|
157
157
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getHTTPCode" class="tsd-anchor"></a>
|
|
158
158
|
<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>
|
|
159
159
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
<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">
|
|
163
163
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getHTTPCode">getHTTPCode</a></p>
|
|
164
164
|
<ul>
|
|
165
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
165
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/DatabaseQueryError.ts#L40">src/DatabaseQueryError.ts:40</a></li></ul></aside></li></ul></section>
|
|
166
166
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getLocaleCode" class="tsd-anchor"></a>
|
|
167
167
|
<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>
|
|
168
168
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
172
172
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getLocaleCode">getLocaleCode</a></p>
|
|
173
173
|
<ul>
|
|
174
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
174
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/DatabaseQueryError.ts#L44">src/DatabaseQueryError.ts:44</a></li></ul></aside></li></ul></section>
|
|
175
175
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getLocaleParameters" class="tsd-anchor"></a>
|
|
176
176
|
<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>
|
|
177
177
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
<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">
|
|
181
181
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getLocaleParameters">getLocaleParameters</a></p>
|
|
182
182
|
<ul>
|
|
183
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
183
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L93">src/StormError.ts:93</a></li></ul></aside></li></ul></section>
|
|
184
184
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getMessage" class="tsd-anchor"></a>
|
|
185
185
|
<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>
|
|
186
186
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
190
190
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getMessage">getMessage</a></p>
|
|
191
191
|
<ul>
|
|
192
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
192
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/DatabaseQueryError.ts#L32">src/DatabaseQueryError.ts:32</a></li></ul></aside></li></ul></section>
|
|
193
193
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPrivateDetails" class="tsd-anchor"></a>
|
|
194
194
|
<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>
|
|
195
195
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -206,7 +206,7 @@ They are kept secret from the client.</p>
|
|
|
206
206
|
<h5><span class="tsd-kind-property">query</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></h5></li></ul><aside class="tsd-sources">
|
|
207
207
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getPrivateDetails">getPrivateDetails</a></p>
|
|
208
208
|
<ul>
|
|
209
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
209
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L68">src/StormError.ts:68</a></li></ul></aside></li></ul></section>
|
|
210
210
|
<section class="tsd-panel tsd-member tsd-is-inherited"><a id="getPublicDetails" class="tsd-anchor"></a>
|
|
211
211
|
<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>
|
|
212
212
|
<ul class="tsd-signatures tsd-is-inherited">
|
|
@@ -217,7 +217,7 @@ They are kept secret from the client.</p>
|
|
|
217
217
|
<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">
|
|
218
218
|
<p>Inherited from <a href="DatabaseQueryError.html">DatabaseQueryError</a>.<a href="DatabaseQueryError.html#getPublicDetails">getPublicDetails</a></p>
|
|
219
219
|
<ul>
|
|
220
|
-
<li>Defined in <a href="https://github.com/breautek/storm/blob/
|
|
220
|
+
<li>Defined in <a href="https://github.com/breautek/storm/blob/78cd5a3/src/StormError.ts#L60">src/StormError.ts:60</a></li></ul></aside></li></ul></section>
|
|
221
221
|
<section class="tsd-panel tsd-member tsd-is-inherited tsd-is-external"><a id="captureStackTrace" class="tsd-anchor"></a>
|
|
222
222
|
<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>
|
|
223
223
|
<ul class="tsd-signatures tsd-is-inherited tsd-is-external">
|
|
@@ -310,7 +310,6 @@ They are kept secret from the client.</p>
|
|
|
310
310
|
<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>
|
|
311
311
|
<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>
|
|
312
312
|
<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>
|
|
313
|
-
<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>
|
|
314
313
|
<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>
|
|
315
314
|
<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>
|
|
316
315
|
<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>
|
|
@@ -346,6 +345,9 @@ They are kept secret from the client.</p>
|
|
|
346
345
|
<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>
|
|
347
346
|
<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>
|
|
348
347
|
<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>
|
|
348
|
+
<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>
|
|
349
|
+
<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>
|
|
350
|
+
<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>
|
|
349
351
|
<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>
|
|
350
352
|
<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>
|
|
351
353
|
<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>
|