@breautek/storm 6.0.4 → 6.1.0-beta.0
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/.eslintrc.js +1 -1
- package/CHANGELOG.md +16 -0
- package/docs/assets/main.js +4 -3
- package/docs/assets/navigation.js +1 -0
- package/docs/assets/search.js +1 -1
- package/docs/assets/style.css +26 -10
- package/docs/classes/Application.html +166 -1164
- package/docs/classes/BackendAuthenticationMiddleware.html +5 -190
- package/docs/classes/CORSMiddleware.html +12 -257
- package/docs/classes/ConfigLoader.html +5 -168
- package/docs/classes/Database.html +13 -342
- package/docs/classes/DatabaseCastObject.html +5 -205
- package/docs/classes/DatabaseConnection.html +65 -546
- package/docs/classes/DatabaseQueryError.html +22 -373
- package/docs/classes/DeadLockError.html +23 -373
- package/docs/classes/DiskSpaceError.html +22 -363
- package/docs/classes/DropTemporaryTableQuery.html +15 -286
- package/docs/classes/DuplicateEntryError.html +22 -367
- package/docs/classes/EntityNotFoundError.html +22 -363
- package/docs/classes/ExpiredTokenError.html +22 -363
- package/docs/classes/Handler.html +14 -397
- package/docs/classes/InternalError.html +22 -363
- package/docs/classes/InvalidCredentialsError.html +22 -363
- package/docs/classes/InvalidValueError.html +22 -374
- package/docs/classes/LineString.html +5 -214
- package/docs/classes/LockWaitTimeoutError.html +23 -373
- package/docs/classes/ManagedDatabaseConnection.html +20 -412
- package/docs/classes/Middleware.html +4 -204
- package/docs/classes/MissingConfigError.html +22 -363
- package/docs/classes/MissingParameterError.html +22 -363
- package/docs/classes/MySQLConnection.html +66 -542
- package/docs/classes/MySQLDatabase.html +14 -355
- package/docs/classes/NotImplementedError.html +22 -363
- package/docs/classes/Point.html +5 -216
- package/docs/classes/Polygon.html +5 -214
- package/docs/classes/Query.html +15 -313
- package/docs/classes/RawError.html +23 -373
- package/docs/classes/RawQuery.html +15 -306
- package/docs/classes/Request.html +19 -377
- package/docs/classes/Response.html +12 -331
- package/docs/classes/ResponseData.html +8 -257
- package/docs/classes/ServiceProvider.html +16 -387
- package/docs/classes/ServiceResponse.html +6 -215
- package/docs/classes/SetSessionVariableQuery.html +15 -286
- package/docs/classes/StormError.html +22 -378
- package/docs/classes/TemporaryTableQuery.html +15 -291
- package/docs/classes/Token.html +3 -183
- package/docs/classes/TokenManager.html +5 -235
- package/docs/classes/Transaction.html +8 -263
- package/docs/classes/UnauthorizedAccessError.html +22 -363
- package/docs/enums/ErrorCode.html +10 -212
- package/docs/enums/ExitCode.html +3 -163
- package/docs/enums/HTTPMethod.html +5 -177
- package/docs/enums/IsolationLevel.html +5 -177
- package/docs/enums/JWTError.html +3 -163
- package/docs/enums/StatusCode.html +49 -485
- package/docs/functions/formidable-1.html +1 -145
- package/docs/functions/getInstance.html +2 -143
- package/docs/index.html +78 -228
- package/docs/interfaces/IAdditionalErrorDetails.html +1 -142
- package/docs/interfaces/IAuthTokenData.html +4 -174
- package/docs/interfaces/ICloudwatchConfig.html +4 -174
- package/docs/interfaces/ICloudwatchCredentials.html +3 -167
- package/docs/interfaces/ICloudwatchStreamConfig.html +3 -167
- package/docs/interfaces/IConfig.html +9 -227
- package/docs/interfaces/IDatabaseConfig.html +7 -200
- package/docs/interfaces/IDatabaseConnection.html +15 -334
- package/docs/interfaces/IErrorResponse.html +6 -188
- package/docs/interfaces/IFormData.html +3 -167
- package/docs/interfaces/IHandler.html +2 -173
- package/docs/interfaces/IInsertQueryResult.html +4 -174
- package/docs/interfaces/IJWTVerifyOptions.html +2 -160
- package/docs/interfaces/IParameterMap.html +1 -142
- package/docs/interfaces/IQueryable.html +6 -235
- package/docs/interfaces/IRequestResponse.html +3 -174
- package/docs/interfaces/IServiceHeaders.html +1 -142
- package/docs/interfaces/ISetSessionVariableQueryInput.html +3 -167
- package/docs/interfaces/ITemporaryTableQueryInput.html +3 -167
- package/docs/interfaces/IUpdateQueryResult.html +3 -167
- package/docs/interfaces/formidable.EmitData.html +5 -182
- package/docs/interfaces/formidable.EventData.html +8 -203
- package/docs/interfaces/formidable.Fields.html +1 -143
- package/docs/interfaces/formidable.File.html +17 -237
- package/docs/interfaces/formidable.FileJSON.html +16 -238
- package/docs/interfaces/formidable.Files.html +1 -143
- package/docs/interfaces/formidable.Options.html +37 -292
- package/docs/interfaces/formidable.Part.html +63 -620
- package/docs/modules/formidable.html +17 -161
- package/docs/types/IDeleteQueryResult.html +1 -136
- package/docs/types/IHandlerError.html +2 -138
- package/docs/types/IHandlerResponse.html +2 -138
- package/docs/types/TCoordinate.html +1 -136
- package/docs/types/formidable.BufferEncoding.html +1 -137
- package/docs/types/formidable.DefaultOptions.html +1 -137
- package/docs/types/formidable.EnabledPlugins.html +1 -137
- package/docs/types/formidable.EventNames.html +1 -137
- package/docs/types/formidable.MappedParsers.html +1 -137
- package/docs/types/formidable.Plugin.html +1 -137
- package/docs/types/formidable.PluginFunction.html +1 -152
- package/docs/types/formidable.Plugins.html +1 -137
- package/jest.config.js +1 -1
- package/lib/Application.d.ts +31 -4
- package/lib/Application.js +57 -14
- package/lib/Application.js.map +1 -1
- package/lib/ApplicationEvent.js +1 -1
- package/lib/ApplicationEvent.js.map +1 -1
- package/lib/CORSMiddleware.d.ts +3 -3
- package/lib/CORSMiddleware.js.map +1 -1
- package/lib/ConfigLoader.d.ts +16 -8
- package/lib/ConfigLoader.js +59 -32
- package/lib/ConfigLoader.js.map +1 -1
- package/lib/ErrorCode.js +1 -1
- package/lib/ErrorCode.js.map +1 -1
- package/lib/ExitCode.js +1 -1
- package/lib/ExitCode.js.map +1 -1
- package/lib/HTTPMethod.js +1 -1
- package/lib/HTTPMethod.js.map +1 -1
- package/lib/Handler.d.ts +1 -1
- package/lib/IConfig.d.ts +2 -2
- package/lib/InvalidConfigError.d.ts +2 -2
- package/lib/InvalidConfigError.js.map +1 -1
- package/lib/IsolationLevel.js +1 -1
- package/lib/IsolationLevel.js.map +1 -1
- package/lib/JWTError.js +1 -1
- package/lib/JWTError.js.map +1 -1
- package/lib/LineString.d.ts +1 -1
- package/lib/LineString.js.map +1 -1
- package/lib/MySQLConnection.js +1 -2
- package/lib/MySQLConnection.js.map +1 -1
- package/lib/Polygon.d.ts +1 -1
- package/lib/Polygon.js.map +1 -1
- package/lib/Request.js.map +1 -1
- package/lib/StatusCode.js +1 -1
- package/lib/StatusCode.js.map +1 -1
- package/package.json +25 -24
- package/src/Application.ts +101 -18
- package/src/CORSMiddleware.ts +5 -5
- package/src/ConfigLoader.ts +81 -40
- package/src/DatabaseConnection.ts +1 -1
- package/src/Handler.ts +2 -2
- package/src/IConfig.ts +2 -2
- package/src/InvalidConfigError.ts +2 -2
- package/src/LineString.ts +2 -2
- package/src/MySQLConnection.ts +1 -2
- package/src/Polygon.ts +3 -3
- package/src/Request.ts +1 -1
- package/tsconfig.json +1 -2
- package/tsconfig-tests.json +0 -15
package/docs/assets/style.css
CHANGED
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
--light-color-ts-accessor: var(--light-color-ts-property);
|
|
33
33
|
--light-color-ts-get-signature: var(--light-color-ts-accessor);
|
|
34
34
|
--light-color-ts-set-signature: var(--light-color-ts-accessor);
|
|
35
|
-
/* object literal not included as it is not used and will be removed in 0.25 */
|
|
36
35
|
--light-color-ts-type-alias: #d51270;
|
|
37
36
|
/* reference not included as links will be colored with the kind that it points to */
|
|
38
37
|
|
|
@@ -72,7 +71,6 @@
|
|
|
72
71
|
--dark-color-ts-accessor: var(--dark-color-ts-property);
|
|
73
72
|
--dark-color-ts-get-signature: var(--dark-color-ts-accessor);
|
|
74
73
|
--dark-color-ts-set-signature: var(--dark-color-ts-accessor);
|
|
75
|
-
/* object literal not included as it is not used and will be removed in 0.25 */
|
|
76
74
|
--dark-color-ts-type-alias: #ff6492;
|
|
77
75
|
/* reference not included as links will be colored with the kind that it points to */
|
|
78
76
|
|
|
@@ -468,13 +466,12 @@ blockquote {
|
|
|
468
466
|
padding: 0 0 0 20px;
|
|
469
467
|
margin: 0;
|
|
470
468
|
}
|
|
471
|
-
.tsd-typography h4,
|
|
472
469
|
.tsd-typography .tsd-index-panel h3,
|
|
473
470
|
.tsd-index-panel .tsd-typography h3,
|
|
471
|
+
.tsd-typography h4,
|
|
474
472
|
.tsd-typography h5,
|
|
475
473
|
.tsd-typography h6 {
|
|
476
474
|
font-size: 1em;
|
|
477
|
-
margin: 0;
|
|
478
475
|
}
|
|
479
476
|
.tsd-typography h5,
|
|
480
477
|
.tsd-typography h6 {
|
|
@@ -485,6 +482,19 @@ blockquote {
|
|
|
485
482
|
.tsd-typography ol {
|
|
486
483
|
margin: 1em 0;
|
|
487
484
|
}
|
|
485
|
+
.tsd-typography table {
|
|
486
|
+
border-collapse: collapse;
|
|
487
|
+
border: none;
|
|
488
|
+
}
|
|
489
|
+
.tsd-typography td,
|
|
490
|
+
.tsd-typography th {
|
|
491
|
+
padding: 6px 13px;
|
|
492
|
+
border: 1px solid var(--color-accent);
|
|
493
|
+
}
|
|
494
|
+
.tsd-typography thead,
|
|
495
|
+
.tsd-typography tr:nth-child(even) {
|
|
496
|
+
background-color: var(--color-background-secondary);
|
|
497
|
+
}
|
|
488
498
|
|
|
489
499
|
.tsd-breadcrumb {
|
|
490
500
|
margin: 0;
|
|
@@ -900,8 +910,9 @@ a.tsd-index-link {
|
|
|
900
910
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
|
|
901
911
|
}
|
|
902
912
|
#tsd-search .results li {
|
|
903
|
-
padding: 0 10px;
|
|
904
913
|
background-color: var(--color-background);
|
|
914
|
+
line-height: initial;
|
|
915
|
+
padding: 4px;
|
|
905
916
|
}
|
|
906
917
|
#tsd-search .results li:nth-child(even) {
|
|
907
918
|
background-color: var(--color-background-secondary);
|
|
@@ -909,12 +920,15 @@ a.tsd-index-link {
|
|
|
909
920
|
#tsd-search .results li.state {
|
|
910
921
|
display: none;
|
|
911
922
|
}
|
|
912
|
-
#tsd-search .results li.current,
|
|
913
|
-
#tsd-search .results li:hover {
|
|
923
|
+
#tsd-search .results li.current:not(.no-results),
|
|
924
|
+
#tsd-search .results li:hover:not(.no-results) {
|
|
914
925
|
background-color: var(--color-accent);
|
|
915
926
|
}
|
|
916
927
|
#tsd-search .results a {
|
|
917
|
-
display:
|
|
928
|
+
display: flex;
|
|
929
|
+
align-items: center;
|
|
930
|
+
padding: 0.25rem;
|
|
931
|
+
box-sizing: border-box;
|
|
918
932
|
}
|
|
919
933
|
#tsd-search .results a:before {
|
|
920
934
|
top: 10px;
|
|
@@ -1070,7 +1084,9 @@ ul.tsd-type-parameter-list h5 {
|
|
|
1070
1084
|
overflow: hidden;
|
|
1071
1085
|
opacity: 0.8;
|
|
1072
1086
|
height: 40px;
|
|
1073
|
-
transition:
|
|
1087
|
+
transition:
|
|
1088
|
+
opacity 0.1s,
|
|
1089
|
+
background-color 0.2s;
|
|
1074
1090
|
vertical-align: bottom;
|
|
1075
1091
|
cursor: pointer;
|
|
1076
1092
|
}
|
|
@@ -1122,7 +1138,7 @@ img {
|
|
|
1122
1138
|
}
|
|
1123
1139
|
|
|
1124
1140
|
.deprecated {
|
|
1125
|
-
text-decoration: line-through;
|
|
1141
|
+
text-decoration: line-through !important;
|
|
1126
1142
|
}
|
|
1127
1143
|
|
|
1128
1144
|
.warning {
|