@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
|
@@ -118,7 +118,6 @@
|
|
|
118
118
|
<li><a href="../classes/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>
|
|
119
119
|
<li><a href="../classes/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>
|
|
120
120
|
<li><a href="../classes/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>
|
|
121
|
-
<li><a href="../classes/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>
|
|
122
121
|
<li><a href="../classes/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>
|
|
123
122
|
<li><a href="../classes/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>
|
|
124
123
|
<li><a href="../classes/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>
|
|
@@ -154,6 +153,9 @@
|
|
|
154
153
|
<li><a href="../classes/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>
|
|
155
154
|
<li><a href="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>
|
|
156
155
|
<li><a href="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>
|
|
156
|
+
<li><a href="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>
|
|
157
|
+
<li><a href="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>
|
|
158
|
+
<li><a href="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>
|
|
157
159
|
<li><a href="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>
|
|
158
160
|
<li><a href="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>
|
|
159
161
|
<li><a href="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>
|
|
@@ -139,7 +139,6 @@
|
|
|
139
139
|
<li><a href="../classes/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>
|
|
140
140
|
<li><a href="../classes/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>
|
|
141
141
|
<li><a href="../classes/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>
|
|
142
|
-
<li><a href="../classes/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>
|
|
143
142
|
<li><a href="../classes/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>
|
|
144
143
|
<li><a href="../classes/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>
|
|
145
144
|
<li><a href="../classes/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>
|
|
@@ -175,6 +174,9 @@
|
|
|
175
174
|
<li><a href="../classes/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>
|
|
176
175
|
<li><a href="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>
|
|
177
176
|
<li><a href="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>
|
|
177
|
+
<li><a href="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>
|
|
178
|
+
<li><a href="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>
|
|
179
|
+
<li><a href="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>
|
|
178
180
|
<li><a href="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>
|
|
179
181
|
<li><a href="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>
|
|
180
182
|
<li><a href="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>
|
|
@@ -79,7 +79,6 @@
|
|
|
79
79
|
<li><a href="../classes/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>
|
|
80
80
|
<li><a href="../classes/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>
|
|
81
81
|
<li><a href="../classes/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>
|
|
82
|
-
<li><a href="../classes/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>
|
|
83
82
|
<li><a href="../classes/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>
|
|
84
83
|
<li><a href="../classes/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>
|
|
85
84
|
<li><a href="../classes/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>
|
|
@@ -115,6 +114,9 @@
|
|
|
115
114
|
<li><a href="../classes/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>
|
|
116
115
|
<li><a href="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>
|
|
117
116
|
<li><a href="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>
|
|
117
|
+
<li><a href="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>
|
|
118
|
+
<li><a href="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>
|
|
119
|
+
<li><a href="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>
|
|
118
120
|
<li><a href="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>
|
|
119
121
|
<li><a href="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>
|
|
120
122
|
<li><a href="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>
|
|
@@ -177,7 +177,6 @@ file which is useful for logging and responding to requests.</p>
|
|
|
177
177
|
<li><a href="../classes/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>
|
|
178
178
|
<li><a href="../classes/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>
|
|
179
179
|
<li><a href="../classes/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>
|
|
180
|
-
<li><a href="../classes/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>
|
|
181
180
|
<li><a href="../classes/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>
|
|
182
181
|
<li><a href="../classes/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>
|
|
183
182
|
<li><a href="../classes/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>
|
|
@@ -213,6 +212,9 @@ file which is useful for logging and responding to requests.</p>
|
|
|
213
212
|
<li><a href="../classes/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>
|
|
214
213
|
<li><a href="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>
|
|
215
214
|
<li><a href="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>
|
|
215
|
+
<li><a href="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>
|
|
216
|
+
<li><a href="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>
|
|
217
|
+
<li><a href="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>
|
|
216
218
|
<li><a href="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>
|
|
217
219
|
<li><a href="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>
|
|
218
220
|
<li><a href="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>
|
|
@@ -176,7 +176,6 @@ event), this property says how many bytes of the file have been written to disk
|
|
|
176
176
|
<li><a href="../classes/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>
|
|
177
177
|
<li><a href="../classes/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>
|
|
178
178
|
<li><a href="../classes/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>
|
|
179
|
-
<li><a href="../classes/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>
|
|
180
179
|
<li><a href="../classes/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>
|
|
181
180
|
<li><a href="../classes/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>
|
|
182
181
|
<li><a href="../classes/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>
|
|
@@ -212,6 +211,9 @@ event), this property says how many bytes of the file have been written to disk
|
|
|
212
211
|
<li><a href="../classes/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>
|
|
213
212
|
<li><a href="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>
|
|
214
213
|
<li><a href="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>
|
|
214
|
+
<li><a href="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>
|
|
215
|
+
<li><a href="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>
|
|
216
|
+
<li><a href="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>
|
|
215
217
|
<li><a href="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>
|
|
216
218
|
<li><a href="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>
|
|
217
219
|
<li><a href="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>
|
|
@@ -79,7 +79,6 @@
|
|
|
79
79
|
<li><a href="../classes/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>
|
|
80
80
|
<li><a href="../classes/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>
|
|
81
81
|
<li><a href="../classes/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>
|
|
82
|
-
<li><a href="../classes/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>
|
|
83
82
|
<li><a href="../classes/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>
|
|
84
83
|
<li><a href="../classes/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>
|
|
85
84
|
<li><a href="../classes/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>
|
|
@@ -115,6 +114,9 @@
|
|
|
115
114
|
<li><a href="../classes/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>
|
|
116
115
|
<li><a href="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>
|
|
117
116
|
<li><a href="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>
|
|
117
|
+
<li><a href="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>
|
|
118
|
+
<li><a href="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>
|
|
119
|
+
<li><a href="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>
|
|
118
120
|
<li><a href="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>
|
|
119
121
|
<li><a href="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>
|
|
120
122
|
<li><a href="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>
|
|
@@ -246,7 +246,6 @@ fields argument will contain arrays of values for fields that have names ending
|
|
|
246
246
|
<li><a href="../classes/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>
|
|
247
247
|
<li><a href="../classes/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>
|
|
248
248
|
<li><a href="../classes/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>
|
|
249
|
-
<li><a href="../classes/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>
|
|
250
249
|
<li><a href="../classes/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>
|
|
251
250
|
<li><a href="../classes/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>
|
|
252
251
|
<li><a href="../classes/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>
|
|
@@ -282,6 +281,9 @@ fields argument will contain arrays of values for fields that have names ending
|
|
|
282
281
|
<li><a href="../classes/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>
|
|
283
282
|
<li><a href="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>
|
|
284
283
|
<li><a href="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>
|
|
284
|
+
<li><a href="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>
|
|
285
|
+
<li><a href="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>
|
|
286
|
+
<li><a href="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>
|
|
285
287
|
<li><a href="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>
|
|
286
288
|
<li><a href="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>
|
|
287
289
|
<li><a href="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>
|