@breautek/storm 9.0.2 → 9.0.4
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/docs/assets/hierarchy.js +1 -1
- package/docs/classes/Application.html +17 -17
- package/docs/classes/ConfigLoader.html +3 -3
- package/docs/classes/Database.html +2 -2
- package/docs/classes/DatabaseCastObject.html +2 -2
- package/docs/classes/DatabaseConnection.html +21 -21
- package/docs/classes/DatabaseQueryError.html +6 -6
- package/docs/classes/DeadLockError.html +6 -6
- package/docs/classes/DiskSpaceError.html +5 -5
- package/docs/classes/DropTemporaryTableQuery.html +7 -7
- package/docs/classes/DuplicateEntryError.html +5 -5
- package/docs/classes/EntityNotFoundError.html +5 -5
- package/docs/classes/ExpiredTokenError.html +5 -5
- package/docs/classes/Handler.html +2 -2
- package/docs/classes/InternalError.html +5 -5
- package/docs/classes/InvalidCredentialsError.html +5 -5
- package/docs/classes/InvalidValueError.html +5 -5
- package/docs/classes/LineString.html +2 -2
- package/docs/classes/LockWaitTimeoutError.html +6 -6
- package/docs/classes/ManagedDatabaseConnection.html +5 -5
- package/docs/classes/Middleware.html +2 -2
- package/docs/classes/MissingConfigError.html +5 -5
- package/docs/classes/MissingParameterError.html +5 -5
- package/docs/classes/MySQLConnection.html +25 -25
- package/docs/classes/MySQLDatabase.html +2 -2
- package/docs/classes/NotImplementedError.html +5 -5
- package/docs/classes/Point.html +2 -2
- package/docs/classes/Polygon.html +2 -2
- package/docs/classes/Query.html +7 -7
- package/docs/classes/RawError.html +5 -5
- package/docs/classes/RawQuery.html +7 -7
- package/docs/classes/Request.html +2 -2
- package/docs/classes/Response.html +2 -2
- package/docs/classes/ResponseData.html +2 -2
- package/docs/classes/ServiceProvider.html +2 -2
- package/docs/classes/ServiceResponse.html +2 -2
- package/docs/classes/SetSessionVariableQuery.html +7 -7
- package/docs/classes/StormError.html +5 -5
- package/docs/classes/TemporaryTableQuery.html +7 -7
- package/docs/classes/TimeoutError.html +5 -5
- package/docs/classes/Token.html +2 -2
- package/docs/classes/TokenManager.html +2 -2
- package/docs/classes/Transaction.html +2 -2
- package/docs/classes/UnauthorizedAccessError.html +5 -5
- package/docs/enums/ErrorCode.html +2 -2
- package/docs/enums/ExitCode.html +2 -2
- package/docs/enums/HTTPMethod.html +2 -2
- package/docs/enums/IsolationLevel.html +2 -2
- package/docs/enums/JWTError.html +2 -2
- package/docs/enums/StatusCode.html +2 -2
- package/docs/enums/TransactionAccessLevel.html +2 -2
- package/docs/functions/getInstance.html +1 -1
- package/docs/hierarchy.html +1 -1
- package/docs/interfaces/IAdditionalErrorDetails.html +1 -1
- package/docs/interfaces/ICloudwatchConfig.html +2 -2
- package/docs/interfaces/ICloudwatchCredentials.html +2 -2
- package/docs/interfaces/ICloudwatchStreamConfig.html +2 -2
- package/docs/interfaces/IConfig.html +2 -2
- package/docs/interfaces/IDatabaseConfig.html +2 -2
- package/docs/interfaces/IDatabaseConnection.html +5 -5
- package/docs/interfaces/IDatabasePosition.html +2 -2
- package/docs/interfaces/IErrorResponse.html +2 -2
- package/docs/interfaces/IFormData.html +2 -2
- package/docs/interfaces/IInsertQueryResult.html +2 -2
- package/docs/interfaces/IJWTVerifyOptions.html +2 -2
- package/docs/interfaces/IOKPacket.html +2 -2
- package/docs/interfaces/IParameterMap.html +1 -1
- package/docs/interfaces/IQueryable.html +2 -2
- package/docs/interfaces/IRequestResponse.html +2 -2
- package/docs/interfaces/ISetSessionVariableQueryInput.html +2 -2
- package/docs/interfaces/IStormCLIArgs.html +2 -2
- package/docs/interfaces/ITemporaryTableQueryInput.html +2 -2
- package/docs/interfaces/IUpdateQueryResult.html +2 -2
- package/docs/interfaces/formidable.FileJSON.html +1 -1
- package/docs/interfaces/formidable.Part.html +1 -1
- package/docs/types/IDeleteQueryResult.html +1 -1
- package/docs/types/IStoredProcedureResult.html +1 -1
- package/docs/types/TCoordinate.html +1 -1
- package/docs/types/TSerializableResponse.html +4 -2
- package/docs/types/TSupportedResponsePrimitives.html +1 -1
- package/docs/types/TSupportedResponseTypes.html +1 -1
- package/lib/Application.js +0 -9
- package/lib/Application.js.map +1 -1
- package/lib/Response.d.ts +5 -5
- package/lib/Response.js.map +1 -1
- package/package.json +1 -1
- package/src/Application.ts +0 -10
- package/src/Response.ts +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v9.0.4](https://github.com/breautek/storm/compare/v9.0.3...v9.0.4)
|
|
8
|
+
|
|
9
|
+
- breaking change notes [`58330c8`](https://github.com/breautek/storm/commit/58330c82c33b3470de89301e3a14d619638d39c2)
|
|
10
|
+
- revert: handling raw data via BodyParser middleware. This causes the stream to be consumed which was unintentional [`472a237`](https://github.com/breautek/storm/commit/472a23785be3d17b3678cdc7bd644841f2e96ae2)
|
|
11
|
+
|
|
12
|
+
#### [v9.0.3](https://github.com/breautek/storm/compare/v9.0.2...v9.0.3)
|
|
13
|
+
|
|
14
|
+
> 6 July 2025
|
|
15
|
+
|
|
16
|
+
- fix serialiable type to allow implicit serializable recursion [`a781ead`](https://github.com/breautek/storm/commit/a781ead713c00aa935e2d11bf17743524b976ce6)
|
|
17
|
+
- added notice [`68cefe1`](https://github.com/breautek/storm/commit/68cefe16fb00d659d0bcb9276c396f3ddd5d1c1a)
|
|
18
|
+
|
|
7
19
|
#### [v9.0.2](https://github.com/breautek/storm/compare/v9.0.1...v9.0.2)
|
|
8
20
|
|
|
21
|
+
> 6 July 2025
|
|
22
|
+
|
|
9
23
|
- fix response typings to allow for recursive json structures [`a73adda`](https://github.com/breautek/storm/commit/a73adda728027f0b5787d5ba1ac59a9aa74381b4)
|
|
10
24
|
|
|
11
25
|
#### [v9.0.1](https://github.com/breautek/storm/compare/v9.0.0...v9.0.1)
|
package/docs/assets/hierarchy.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
window.hierarchyData = "
|
|
1
|
+
window.hierarchyData = "eJyVl11v2yAUhv8L13QzGGPI3dRkUqW2a5euu6h6QW2astoQAdmWVf3vk5Mmxc0H+MoSeg/P+QIfXoA1xjswusO8gIiXDCJGOUQc55CV9B4CKx8bWXlltAOjF4B50X20aCUYgbHw4kE4CSB4VroGI4QZBAvbgBGoGuGcdJ83mk9Pvm0AXK+DEfCuPumMTtYLEFRPqqmt1GB0RzC6f4Ugz/ke2KnReu1RCvZdPcgByjsHCEaBAxfL6fV5Ssg9YQTbUSj/SEmL8YM0TioIDUlCi5msh+X1oFGcThEJ6NcLaZfHSCvBkKJRwiAtGSwzAktCuwJSwgLkjWznxgq7vBEPjYw6sEeeEGQZEsfWzAdSD5jEyWUWpve7+BNFbTQJe/caZyr9VDqnjL4VViVFdcAkgcyysIJWaCeiTRrI4gSWF/28Taw1NpK3lSZh77KXN29sG939XTWk+VleQI4x5AWDnGOIMkwhymgGUcYJRChnEKESQ4QzChEmGUS4pBDlKIMoL/LuuHCMw2SrVpqFjzoc6uIp4UV4QC6Uc0rProQVrfTSRmF7DRKoPIzsTP8WjapPrayl9ko0Lso9YBInd4Xoob20WjQJwECYgqHhQZn8nSsr6xvzLHUUtSNOwXGym9Bb0SxkairfxQk4lIdd80OLhX8yVv2T9Zeqki5evwMmKegybJ2J9sovL43/aha6jqd2V56AxFnYMmPlnqdzUcUz21emgEjYNOPFvFGV8HKivV3GabvyFGTvSnw7zqdGP6pZ6uEP1AnAHGV7psjV7yce4o56yJ2MclZCRHB5v/KjyAM/Lo0/a+eNbKX2Mt5He+QpobMyDF2K+txUz/GoQ2EChuAQ01n+FMqn/j726ROgrDc1nx2ZYnFBN0zVXaqPoupuoQEj7NasX98857BYD5rdiyl0Z9Uw3ZgT82IrHAqniMCSZWt4f+jcBCac//bwS1Y+6aG0VQ9qcc4YxFmGIc4QWTvDQmeujNJH+StBvN4dI2wypeXUW6VnR1trq0oB9J4nV6ZZzo5PmW+S2Navr/8Bq84MAw=="
|