@breautek/storm 9.0.3 → 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.
Files changed (82) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/docs/classes/Application.html +17 -17
  3. package/docs/classes/ConfigLoader.html +3 -3
  4. package/docs/classes/Database.html +2 -2
  5. package/docs/classes/DatabaseCastObject.html +2 -2
  6. package/docs/classes/DatabaseConnection.html +21 -21
  7. package/docs/classes/DatabaseQueryError.html +6 -6
  8. package/docs/classes/DeadLockError.html +6 -6
  9. package/docs/classes/DiskSpaceError.html +5 -5
  10. package/docs/classes/DropTemporaryTableQuery.html +7 -7
  11. package/docs/classes/DuplicateEntryError.html +5 -5
  12. package/docs/classes/EntityNotFoundError.html +5 -5
  13. package/docs/classes/ExpiredTokenError.html +5 -5
  14. package/docs/classes/Handler.html +2 -2
  15. package/docs/classes/InternalError.html +5 -5
  16. package/docs/classes/InvalidCredentialsError.html +5 -5
  17. package/docs/classes/InvalidValueError.html +5 -5
  18. package/docs/classes/LineString.html +2 -2
  19. package/docs/classes/LockWaitTimeoutError.html +6 -6
  20. package/docs/classes/ManagedDatabaseConnection.html +5 -5
  21. package/docs/classes/Middleware.html +2 -2
  22. package/docs/classes/MissingConfigError.html +5 -5
  23. package/docs/classes/MissingParameterError.html +5 -5
  24. package/docs/classes/MySQLConnection.html +25 -25
  25. package/docs/classes/MySQLDatabase.html +2 -2
  26. package/docs/classes/NotImplementedError.html +5 -5
  27. package/docs/classes/Point.html +2 -2
  28. package/docs/classes/Polygon.html +2 -2
  29. package/docs/classes/Query.html +7 -7
  30. package/docs/classes/RawError.html +5 -5
  31. package/docs/classes/RawQuery.html +7 -7
  32. package/docs/classes/Request.html +2 -2
  33. package/docs/classes/Response.html +2 -2
  34. package/docs/classes/ResponseData.html +2 -2
  35. package/docs/classes/ServiceProvider.html +2 -2
  36. package/docs/classes/ServiceResponse.html +2 -2
  37. package/docs/classes/SetSessionVariableQuery.html +7 -7
  38. package/docs/classes/StormError.html +5 -5
  39. package/docs/classes/TemporaryTableQuery.html +7 -7
  40. package/docs/classes/TimeoutError.html +5 -5
  41. package/docs/classes/Token.html +2 -2
  42. package/docs/classes/TokenManager.html +2 -2
  43. package/docs/classes/Transaction.html +2 -2
  44. package/docs/classes/UnauthorizedAccessError.html +5 -5
  45. package/docs/enums/ErrorCode.html +2 -2
  46. package/docs/enums/ExitCode.html +2 -2
  47. package/docs/enums/HTTPMethod.html +2 -2
  48. package/docs/enums/IsolationLevel.html +2 -2
  49. package/docs/enums/JWTError.html +2 -2
  50. package/docs/enums/StatusCode.html +2 -2
  51. package/docs/enums/TransactionAccessLevel.html +2 -2
  52. package/docs/functions/getInstance.html +1 -1
  53. package/docs/interfaces/IAdditionalErrorDetails.html +1 -1
  54. package/docs/interfaces/ICloudwatchConfig.html +2 -2
  55. package/docs/interfaces/ICloudwatchCredentials.html +2 -2
  56. package/docs/interfaces/ICloudwatchStreamConfig.html +2 -2
  57. package/docs/interfaces/IConfig.html +2 -2
  58. package/docs/interfaces/IDatabaseConfig.html +2 -2
  59. package/docs/interfaces/IDatabaseConnection.html +5 -5
  60. package/docs/interfaces/IDatabasePosition.html +2 -2
  61. package/docs/interfaces/IErrorResponse.html +2 -2
  62. package/docs/interfaces/IFormData.html +2 -2
  63. package/docs/interfaces/IInsertQueryResult.html +2 -2
  64. package/docs/interfaces/IJWTVerifyOptions.html +2 -2
  65. package/docs/interfaces/IOKPacket.html +2 -2
  66. package/docs/interfaces/IParameterMap.html +1 -1
  67. package/docs/interfaces/IQueryable.html +2 -2
  68. package/docs/interfaces/IRequestResponse.html +2 -2
  69. package/docs/interfaces/ISetSessionVariableQueryInput.html +2 -2
  70. package/docs/interfaces/IStormCLIArgs.html +2 -2
  71. package/docs/interfaces/ITemporaryTableQueryInput.html +2 -2
  72. package/docs/interfaces/IUpdateQueryResult.html +2 -2
  73. package/docs/types/IDeleteQueryResult.html +1 -1
  74. package/docs/types/IStoredProcedureResult.html +1 -1
  75. package/docs/types/TCoordinate.html +1 -1
  76. package/docs/types/TSerializableResponse.html +1 -1
  77. package/docs/types/TSupportedResponsePrimitives.html +1 -1
  78. package/docs/types/TSupportedResponseTypes.html +1 -1
  79. package/lib/Application.js +0 -9
  80. package/lib/Application.js.map +1 -1
  81. package/package.json +1 -1
  82. package/src/Application.ts +0 -10
package/CHANGELOG.md CHANGED
@@ -4,8 +4,15 @@ 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
+
7
12
  #### [v9.0.3](https://github.com/breautek/storm/compare/v9.0.2...v9.0.3)
8
13
 
14
+ > 6 July 2025
15
+
9
16
  - fix serialiable type to allow implicit serializable recursion [`a781ead`](https://github.com/breautek/storm/commit/a781ead713c00aa935e2d11bf17743524b976ce6)
10
17
  - added notice [`68cefe1`](https://github.com/breautek/storm/commit/68cefe16fb00d659d0bcb9276c396f3ddd5d1c1a)
11
18