@breautek/storm 3.3.1 → 4.1.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.
Files changed (317) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/bt-config-sample.jsonc +1 -1
  3. package/docs/README.md +153 -62
  4. package/docs/classes/{Application.Application-1.md → Application.md} +111 -113
  5. package/docs/classes/{BackendAuthenticationMiddleware.BackendAuthenticationMiddleware-1.md → BackendAuthenticationMiddleware.md} +6 -8
  6. package/docs/classes/CORSMiddleware.md +143 -0
  7. package/docs/classes/{ConfigLoader.ConfigLoader-1.md → ConfigLoader.md} +5 -7
  8. package/docs/classes/{Database.Database-1.md → Database.md} +30 -32
  9. package/docs/classes/{DatabaseConnection.DatabaseConnection-1.md → DatabaseConnection.md} +57 -59
  10. package/docs/classes/DatabaseQueryError.md +307 -0
  11. package/docs/classes/DiskSpaceError.md +301 -0
  12. package/docs/classes/DropTemporaryTableQuery.md +201 -0
  13. package/docs/classes/DumpStream.md +23 -0
  14. package/docs/classes/DuplicateEntryError.md +303 -0
  15. package/docs/classes/EntityNotFoundError.md +301 -0
  16. package/docs/classes/ExpiredTokenError.md +301 -0
  17. package/docs/classes/Handler.md +323 -0
  18. package/docs/classes/InternalError.md +301 -0
  19. package/docs/classes/InvalidCredentialsError.md +301 -0
  20. package/docs/classes/InvalidValueError.md +309 -0
  21. package/docs/classes/ManagedDatabaseConnection.md +397 -0
  22. package/docs/classes/Middleware.md +72 -0
  23. package/docs/classes/MissingConfigError.md +301 -0
  24. package/docs/classes/MissingParameterError.md +301 -0
  25. package/docs/classes/{MySQLConnection.MySQLConnection-1.md → MySQLConnection.md} +63 -65
  26. package/docs/classes/MySQLDatabase.md +314 -0
  27. package/docs/classes/{Query.Query-1.md → Query.md} +40 -34
  28. package/docs/classes/RawQuery.md +218 -0
  29. package/docs/classes/Request.md +321 -0
  30. package/docs/classes/Response.md +242 -0
  31. package/docs/classes/{ResponseData.ResponseData-1.md → ResponseData.md} +18 -20
  32. package/docs/classes/ServiceProvider.md +296 -0
  33. package/docs/classes/{ServiceResponse.ServiceResponse-1.md → ServiceResponse.md} +9 -11
  34. package/docs/classes/SetSessionVariableQuery.md +201 -0
  35. package/docs/classes/StormError.md +307 -0
  36. package/docs/classes/TemporaryTableQuery.md +207 -0
  37. package/docs/classes/{Token.Token-1.md → Token.md} +5 -7
  38. package/docs/classes/{TokenManager.TokenManager-1.md → TokenManager.md} +16 -18
  39. package/docs/classes/UnauthorizedAccessError.md +301 -0
  40. package/docs/enums/ErrorCode.md +107 -0
  41. package/docs/enums/ExitCode.md +30 -0
  42. package/docs/enums/HTTPMethod.md +52 -0
  43. package/docs/enums/JWTError.md +30 -0
  44. package/docs/enums/StatusCode.md +536 -0
  45. package/docs/interfaces/IAdditionalErrorDetails.md +7 -0
  46. package/docs/interfaces/{IAuthTokenData.IAuthTokenData-1.md → IAuthTokenData.md} +4 -6
  47. package/docs/interfaces/IConfig.md +112 -0
  48. package/docs/interfaces/{IDatabaseConfig.IDatabaseConfig-1.md → IDatabaseConfig.md} +13 -15
  49. package/docs/interfaces/{IDatabaseConnection.IDatabaseConnection-1.md → IDatabaseConnection.md} +33 -35
  50. package/docs/interfaces/IErrorResponse.md +52 -0
  51. package/docs/interfaces/IFormData.md +30 -0
  52. package/docs/interfaces/{IHandler.IHandler-1.md → IHandler.md} +4 -6
  53. package/docs/interfaces/IInsertQueryResult.md +41 -0
  54. package/docs/interfaces/IJWTVerifyOptions.md +19 -0
  55. package/docs/interfaces/IParameterMap.md +7 -0
  56. package/docs/interfaces/IRequestResponse.md +37 -0
  57. package/docs/interfaces/IServiceHeaders.md +7 -0
  58. package/docs/interfaces/ISetSessionVariableQueryInput.md +30 -0
  59. package/docs/interfaces/ITemporaryTableQueryInput.md +30 -0
  60. package/docs/interfaces/IUpdateQueryResult.md +30 -0
  61. package/docs/interfaces/formidable.EmitData.md +54 -0
  62. package/docs/interfaces/{api.formidable.EventData.md → formidable.EventData.md} +10 -10
  63. package/docs/interfaces/formidable.Fields.md +9 -0
  64. package/docs/interfaces/{api.formidable.File.md → formidable.File.md} +12 -12
  65. package/docs/interfaces/{api.formidable.FileJSON.md → formidable.FileJSON.md} +12 -12
  66. package/docs/interfaces/formidable.Files.md +9 -0
  67. package/docs/interfaces/{api.formidable.Options.md → formidable.Options.md} +17 -15
  68. package/docs/interfaces/{api.formidable.Part.md → formidable.Part.md} +41 -41
  69. package/docs/modules/{api.formidable.md → formidable.md} +25 -27
  70. package/lib/Application.js +1 -1
  71. package/lib/Application.js.map +1 -1
  72. package/lib/BackendAuthenticationMiddleware.js +2 -2
  73. package/lib/BackendAuthenticationMiddleware.js.map +1 -1
  74. package/lib/CORSMiddleware.js +1 -1
  75. package/lib/CORSMiddleware.js.map +1 -1
  76. package/lib/ConfigLoader.js +1 -1
  77. package/lib/ConfigLoader.js.map +1 -1
  78. package/lib/Database.js +1 -1
  79. package/lib/Database.js.map +1 -1
  80. package/lib/DatabaseConnection.js +4 -4
  81. package/lib/DatabaseConnection.js.map +1 -1
  82. package/lib/Handler.js +2 -2
  83. package/lib/Handler.js.map +1 -1
  84. package/lib/ManagedDatabaseConnection.js +4 -4
  85. package/lib/ManagedDatabaseConnection.js.map +1 -1
  86. package/lib/MySQLConnection.js +7 -7
  87. package/lib/MySQLConnection.js.map +1 -1
  88. package/lib/MySQLDatabase.js +4 -4
  89. package/lib/MySQLDatabase.js.map +1 -1
  90. package/lib/Query.d.ts +3 -4
  91. package/lib/Query.js +2 -2
  92. package/lib/Query.js.map +1 -1
  93. package/lib/RawQuery.d.ts +1 -1
  94. package/lib/RawQuery.js.map +1 -1
  95. package/lib/Request.d.ts +1 -0
  96. package/lib/Request.js +2 -2
  97. package/lib/Request.js.map +1 -1
  98. package/lib/Response.d.ts +1 -0
  99. package/lib/Response.js +1 -1
  100. package/lib/Response.js.map +1 -1
  101. package/lib/ServiceProvider.d.ts +1 -2
  102. package/lib/ServiceProvider.js.map +1 -1
  103. package/lib/ServiceResponse.d.ts +1 -0
  104. package/lib/SetSessionVariableQuery.d.ts +9 -0
  105. package/lib/SetSessionVariableQuery.js +20 -0
  106. package/lib/SetSessionVariableQuery.js.map +1 -0
  107. package/lib/StormError.js +1 -1
  108. package/lib/StormError.js.map +1 -1
  109. package/lib/TemporaryTableQuery.d.ts +3 -3
  110. package/lib/TemporaryTableQuery.js +2 -2
  111. package/lib/TemporaryTableQuery.js.map +1 -1
  112. package/lib/TokenManager.js +1 -1
  113. package/lib/TokenManager.js.map +1 -1
  114. package/lib/api.d.ts +1 -0
  115. package/lib/api.js +3 -1
  116. package/lib/api.js.map +1 -1
  117. package/package.json +22 -23
  118. package/src/Database.ts +1 -2
  119. package/src/DatabaseConnection.ts +4 -5
  120. package/src/Query.ts +4 -5
  121. package/src/RawQuery.ts +1 -1
  122. package/src/ServiceProvider.ts +1 -2
  123. package/src/SetSessionVariableQuery.ts +28 -0
  124. package/src/TemporaryTableQuery.ts +5 -5
  125. package/src/api.ts +1 -0
  126. package/.nyc_output/01d7f3ed-ada5-4fbf-bf72-17458de5eda1.json +0 -1
  127. package/.nyc_output/07a372ea-5f20-411a-8f9b-5cfd38c9f7cf.json +0 -1
  128. package/.nyc_output/1a03fe29-15f4-4d36-a6f1-061f95c919d2.json +0 -1
  129. package/.nyc_output/1be973a3-2986-4e51-9bef-ffa834a81029.json +0 -1
  130. package/.nyc_output/1fa3f196-6284-4422-b186-8fb97ac299b1.json +0 -1
  131. package/.nyc_output/21b4136c-a3f4-465a-ab85-cdfa70dda252.json +0 -1
  132. package/.nyc_output/279ce3fa-118b-4b21-bbd4-a0dbabb3cf28.json +0 -1
  133. package/.nyc_output/370daf16-8792-4296-a491-4b0ff8c5c03d.json +0 -1
  134. package/.nyc_output/44cabfc1-f759-4ff5-9502-0967bba28c3b.json +0 -1
  135. package/.nyc_output/52cc8740-cb58-4b4e-b952-bedee8b2a4b9.json +0 -1
  136. package/.nyc_output/5359ad53-153e-4a68-9158-095880ce3682.json +0 -1
  137. package/.nyc_output/54476a59-73ed-43c2-b90f-46bad1fd2b24.json +0 -1
  138. package/.nyc_output/5e815b47-2082-47aa-8d02-548d8f0175a6.json +0 -1
  139. package/.nyc_output/6300a22c-16ee-4f46-a5bc-ac392153ef39.json +0 -1
  140. package/.nyc_output/6331ec83-1ccd-4980-8cdb-55f87f01b6a0.json +0 -1
  141. package/.nyc_output/6a819ad4-b691-45b3-b693-98f812bd3249.json +0 -1
  142. package/.nyc_output/77e0e45c-5d9f-4848-96a1-cc36e5373078.json +0 -1
  143. package/.nyc_output/790a50c9-e677-48ed-9d87-3ca0d173f7b0.json +0 -1
  144. package/.nyc_output/7dad65fb-92f5-4d0a-a576-e071c1ab73e5.json +0 -1
  145. package/.nyc_output/7ee3638f-2a2d-4d5a-9970-254a86884c40.json +0 -1
  146. package/.nyc_output/883b8a83-3a1e-4153-a987-3a2f5455a627.json +0 -1
  147. package/.nyc_output/8dc3a0b6-b04e-45f5-85ec-99efabb63499.json +0 -1
  148. package/.nyc_output/8e03b522-9fef-4fae-82c0-f51611fab55a.json +0 -1
  149. package/.nyc_output/946bad92-6c4b-4ac1-b508-83983322629c.json +0 -1
  150. package/.nyc_output/95d30443-c776-4f68-ab14-34ecdccdaee4.json +0 -1
  151. package/.nyc_output/abc21188-b3dc-4cce-bc20-f0680a4dde62.json +0 -1
  152. package/.nyc_output/ac7ebac2-d226-41f9-b271-25b0ad449de0.json +0 -1
  153. package/.nyc_output/ae1048af-74db-41a3-b4d7-e511f60259ef.json +0 -1
  154. package/.nyc_output/b121ce1e-5d6b-4b6d-93a7-21b315098afc.json +0 -1
  155. package/.nyc_output/bb6d14e4-2e75-45bd-a1f0-67c21781bcf6.json +0 -1
  156. package/.nyc_output/c5d84f76-682f-429c-9b0d-241c81a72907.json +0 -1
  157. package/.nyc_output/d14c616f-ca9b-402d-879d-c7e91ecc6b89.json +0 -1
  158. package/.nyc_output/d3096a06-29ef-4de7-b565-b7b1ca58471a.json +0 -1
  159. package/.nyc_output/d6313ced-0715-41aa-a0bb-22eeae3cccc1.json +0 -1
  160. package/.nyc_output/e7143b16-9cb3-4900-9498-05c40f90af46.json +0 -1
  161. package/.nyc_output/eb21b824-fc88-4f0c-9e72-bd691a141b75.json +0 -1
  162. package/.nyc_output/ee09e08d-c0f5-4fba-9fa1-849b0f32f347.json +0 -1
  163. package/.nyc_output/ee8b9792-e4fc-4950-8532-733858a2a7f2.json +0 -1
  164. package/.nyc_output/f4344c1d-e947-4c51-abe0-e3600b4e721d.json +0 -1
  165. package/.nyc_output/f7d0a4d2-62db-494d-bb67-78e3f93ae05b.json +0 -1
  166. package/.nyc_output/processinfo/01d7f3ed-ada5-4fbf-bf72-17458de5eda1.json +0 -1
  167. package/.nyc_output/processinfo/07a372ea-5f20-411a-8f9b-5cfd38c9f7cf.json +0 -1
  168. package/.nyc_output/processinfo/1a03fe29-15f4-4d36-a6f1-061f95c919d2.json +0 -1
  169. package/.nyc_output/processinfo/1be973a3-2986-4e51-9bef-ffa834a81029.json +0 -1
  170. package/.nyc_output/processinfo/1fa3f196-6284-4422-b186-8fb97ac299b1.json +0 -1
  171. package/.nyc_output/processinfo/21b4136c-a3f4-465a-ab85-cdfa70dda252.json +0 -1
  172. package/.nyc_output/processinfo/279ce3fa-118b-4b21-bbd4-a0dbabb3cf28.json +0 -1
  173. package/.nyc_output/processinfo/370daf16-8792-4296-a491-4b0ff8c5c03d.json +0 -1
  174. package/.nyc_output/processinfo/44cabfc1-f759-4ff5-9502-0967bba28c3b.json +0 -1
  175. package/.nyc_output/processinfo/52cc8740-cb58-4b4e-b952-bedee8b2a4b9.json +0 -1
  176. package/.nyc_output/processinfo/5359ad53-153e-4a68-9158-095880ce3682.json +0 -1
  177. package/.nyc_output/processinfo/54476a59-73ed-43c2-b90f-46bad1fd2b24.json +0 -1
  178. package/.nyc_output/processinfo/5e815b47-2082-47aa-8d02-548d8f0175a6.json +0 -1
  179. package/.nyc_output/processinfo/6300a22c-16ee-4f46-a5bc-ac392153ef39.json +0 -1
  180. package/.nyc_output/processinfo/6331ec83-1ccd-4980-8cdb-55f87f01b6a0.json +0 -1
  181. package/.nyc_output/processinfo/6a819ad4-b691-45b3-b693-98f812bd3249.json +0 -1
  182. package/.nyc_output/processinfo/77e0e45c-5d9f-4848-96a1-cc36e5373078.json +0 -1
  183. package/.nyc_output/processinfo/790a50c9-e677-48ed-9d87-3ca0d173f7b0.json +0 -1
  184. package/.nyc_output/processinfo/7dad65fb-92f5-4d0a-a576-e071c1ab73e5.json +0 -1
  185. package/.nyc_output/processinfo/7ee3638f-2a2d-4d5a-9970-254a86884c40.json +0 -1
  186. package/.nyc_output/processinfo/883b8a83-3a1e-4153-a987-3a2f5455a627.json +0 -1
  187. package/.nyc_output/processinfo/8dc3a0b6-b04e-45f5-85ec-99efabb63499.json +0 -1
  188. package/.nyc_output/processinfo/8e03b522-9fef-4fae-82c0-f51611fab55a.json +0 -1
  189. package/.nyc_output/processinfo/946bad92-6c4b-4ac1-b508-83983322629c.json +0 -1
  190. package/.nyc_output/processinfo/95d30443-c776-4f68-ab14-34ecdccdaee4.json +0 -1
  191. package/.nyc_output/processinfo/abc21188-b3dc-4cce-bc20-f0680a4dde62.json +0 -1
  192. package/.nyc_output/processinfo/ac7ebac2-d226-41f9-b271-25b0ad449de0.json +0 -1
  193. package/.nyc_output/processinfo/ae1048af-74db-41a3-b4d7-e511f60259ef.json +0 -1
  194. package/.nyc_output/processinfo/b121ce1e-5d6b-4b6d-93a7-21b315098afc.json +0 -1
  195. package/.nyc_output/processinfo/bb6d14e4-2e75-45bd-a1f0-67c21781bcf6.json +0 -1
  196. package/.nyc_output/processinfo/c5d84f76-682f-429c-9b0d-241c81a72907.json +0 -1
  197. package/.nyc_output/processinfo/d14c616f-ca9b-402d-879d-c7e91ecc6b89.json +0 -1
  198. package/.nyc_output/processinfo/d3096a06-29ef-4de7-b565-b7b1ca58471a.json +0 -1
  199. package/.nyc_output/processinfo/d6313ced-0715-41aa-a0bb-22eeae3cccc1.json +0 -1
  200. package/.nyc_output/processinfo/e7143b16-9cb3-4900-9498-05c40f90af46.json +0 -1
  201. package/.nyc_output/processinfo/eb21b824-fc88-4f0c-9e72-bd691a141b75.json +0 -1
  202. package/.nyc_output/processinfo/ee09e08d-c0f5-4fba-9fa1-849b0f32f347.json +0 -1
  203. package/.nyc_output/processinfo/ee8b9792-e4fc-4950-8532-733858a2a7f2.json +0 -1
  204. package/.nyc_output/processinfo/f4344c1d-e947-4c51-abe0-e3600b4e721d.json +0 -1
  205. package/.nyc_output/processinfo/f7d0a4d2-62db-494d-bb67-78e3f93ae05b.json +0 -1
  206. package/.nyc_output/processinfo/index.json +0 -1
  207. package/docs/classes/CORSMiddleware.CORSMiddleware-1.md +0 -145
  208. package/docs/classes/DatabaseQueryError.DatabaseQueryError-1.md +0 -309
  209. package/docs/classes/DiskSpaceError.DiskSpaceError-1.md +0 -303
  210. package/docs/classes/DropTemporaryTableQuery.DropTemporaryTableQuery-1.md +0 -197
  211. package/docs/classes/DumpStream.DumpStream-1.md +0 -25
  212. package/docs/classes/DuplicateEntryError.DuplicateEntryError-1.md +0 -305
  213. package/docs/classes/EntityNotFoundError.EntityNotFoundError-1.md +0 -303
  214. package/docs/classes/ExpiredTokenError.ExpiredTokenError-1.md +0 -303
  215. package/docs/classes/Handler.Handler-1.md +0 -325
  216. package/docs/classes/InternalError.InternalError-1.md +0 -303
  217. package/docs/classes/InvalidConfigError.InvalidConfigError-1.md +0 -316
  218. package/docs/classes/InvalidCredentialsError.InvalidCredentialsError-1.md +0 -303
  219. package/docs/classes/InvalidValueError.InvalidValueError-1.md +0 -311
  220. package/docs/classes/JWTVerifyOptionsParser.JWTVerifyOptionsParser-1.md +0 -45
  221. package/docs/classes/ManagedDatabaseConnection.ManagedDatabaseConnection-1.md +0 -399
  222. package/docs/classes/Middleware.Middleware-1.md +0 -74
  223. package/docs/classes/MissingConfigError.MissingConfigError-1.md +0 -303
  224. package/docs/classes/MissingParameterError.MissingParameterError-1.md +0 -303
  225. package/docs/classes/MySQLDatabase.MySQLDatabase-1.md +0 -316
  226. package/docs/classes/RawQuery.RawQuery-1.md +0 -212
  227. package/docs/classes/Request.Request-1.md +0 -323
  228. package/docs/classes/Response.Response-1.md +0 -244
  229. package/docs/classes/ServiceProvider.ServiceProvider-1.md +0 -298
  230. package/docs/classes/StormError.StormError-1.md +0 -309
  231. package/docs/classes/TemporaryTableQuery.TemporaryTableQuery-1.md +0 -197
  232. package/docs/classes/UnauthorizedAccessError.UnauthorizedAccessError-1.md +0 -301
  233. package/docs/classes/private_CommitQuery.CommitQuery.md +0 -197
  234. package/docs/classes/private_RollbackQuery.RollbackQuery.md +0 -197
  235. package/docs/classes/private_StartTransactionQuery.StartTransactionQuery.md +0 -197
  236. package/docs/enums/ApplicationEvent.ApplicationEvent-1.md +0 -21
  237. package/docs/enums/ErrorCode.ErrorCode-1.md +0 -109
  238. package/docs/enums/ExitCode.ExitCode-1.md +0 -32
  239. package/docs/enums/HTTPMethod.HTTPMethod-1.md +0 -54
  240. package/docs/enums/JWTError.JWTError-1.md +0 -32
  241. package/docs/enums/StatusCode.StatusCode-1.md +0 -538
  242. package/docs/interfaces/DropTemporaryTableQuery.IDropTemporaryTableQueryInput.md +0 -21
  243. package/docs/interfaces/IConfig.IConfig-1.md +0 -114
  244. package/docs/interfaces/IFormData.IFormData-1.md +0 -32
  245. package/docs/interfaces/IInsertQueryResult.IInsertQueryResult-1.md +0 -43
  246. package/docs/interfaces/IJWTVerifyOptions.IJWTVerifyOptions-1.md +0 -21
  247. package/docs/interfaces/IRequestResponse.IRequestResponse-1.md +0 -39
  248. package/docs/interfaces/IServiceHeaders.IServiceHeaders-1.md +0 -9
  249. package/docs/interfaces/IUpdateQueryResult.IUpdateQueryResult-1.md +0 -32
  250. package/docs/interfaces/Request.IParameterMap.md +0 -9
  251. package/docs/interfaces/Response.IHeaderKeyValuePair.md +0 -9
  252. package/docs/interfaces/StormError.IAdditionalErrorDetails.md +0 -9
  253. package/docs/interfaces/StormError.IErrorResponse.md +0 -54
  254. package/docs/interfaces/TemporaryTableQuery.ITemporaryTableQueryInput.md +0 -32
  255. package/docs/interfaces/api.formidable.EmitData.md +0 -54
  256. package/docs/interfaces/api.formidable.Fields.md +0 -9
  257. package/docs/interfaces/api.formidable.Files.md +0 -9
  258. package/docs/modules/Application.md +0 -9
  259. package/docs/modules/ApplicationEvent.md +0 -9
  260. package/docs/modules/BackendAuthenticationMiddleware.md +0 -9
  261. package/docs/modules/CORSMiddleware.md +0 -9
  262. package/docs/modules/ConfigLoader.md +0 -9
  263. package/docs/modules/Database.md +0 -9
  264. package/docs/modules/DatabaseConnection.md +0 -34
  265. package/docs/modules/DatabaseQueryError.md +0 -9
  266. package/docs/modules/DiskSpaceError.md +0 -9
  267. package/docs/modules/DropTemporaryTableQuery.md +0 -13
  268. package/docs/modules/DumpStream.md +0 -9
  269. package/docs/modules/DuplicateEntryError.md +0 -9
  270. package/docs/modules/EntityNotFoundError.md +0 -9
  271. package/docs/modules/ErrorCode.md +0 -9
  272. package/docs/modules/ExitCode.md +0 -9
  273. package/docs/modules/ExpiredTokenError.md +0 -9
  274. package/docs/modules/HTTPMethod.md +0 -9
  275. package/docs/modules/Handler.md +0 -50
  276. package/docs/modules/IAuthTokenData.md +0 -9
  277. package/docs/modules/IConfig.md +0 -9
  278. package/docs/modules/IDatabaseConfig.md +0 -9
  279. package/docs/modules/IDatabaseConnection.md +0 -9
  280. package/docs/modules/IDeleteQueryResult.md +0 -19
  281. package/docs/modules/IFormData.md +0 -9
  282. package/docs/modules/IHandler.md +0 -9
  283. package/docs/modules/IInsertQueryResult.md +0 -9
  284. package/docs/modules/IJWTVerifyOptions.md +0 -9
  285. package/docs/modules/IRequestResponse.md +0 -9
  286. package/docs/modules/IServiceHeaders.md +0 -9
  287. package/docs/modules/IUpdateQueryResult.md +0 -9
  288. package/docs/modules/InternalError.md +0 -9
  289. package/docs/modules/InvalidConfigError.md +0 -9
  290. package/docs/modules/InvalidCredentialsError.md +0 -9
  291. package/docs/modules/InvalidValueError.md +0 -9
  292. package/docs/modules/JWTError.md +0 -9
  293. package/docs/modules/JWTVerifyOptionsParser.md +0 -9
  294. package/docs/modules/ManagedDatabaseConnection.md +0 -9
  295. package/docs/modules/Middleware.md +0 -9
  296. package/docs/modules/MissingConfigError.md +0 -9
  297. package/docs/modules/MissingParameterError.md +0 -9
  298. package/docs/modules/MySQLConnection.md +0 -9
  299. package/docs/modules/MySQLDatabase.md +0 -9
  300. package/docs/modules/Query.md +0 -9
  301. package/docs/modules/RawQuery.md +0 -9
  302. package/docs/modules/Request.md +0 -13
  303. package/docs/modules/Response.md +0 -27
  304. package/docs/modules/ResponseData.md +0 -9
  305. package/docs/modules/ServiceProvider.md +0 -9
  306. package/docs/modules/ServiceResponse.md +0 -9
  307. package/docs/modules/StatusCode.md +0 -9
  308. package/docs/modules/StormError.md +0 -14
  309. package/docs/modules/TemporaryTableQuery.md +0 -13
  310. package/docs/modules/Token.md +0 -9
  311. package/docs/modules/TokenManager.md +0 -9
  312. package/docs/modules/UnauthorizedAccessError.md +0 -9
  313. package/docs/modules/api.md +0 -439
  314. package/docs/modules/instance.md +0 -44
  315. package/docs/modules/private_CommitQuery.md +0 -9
  316. package/docs/modules/private_RollbackQuery.md +0 -9
  317. package/docs/modules/private_StartTransactionQuery.md +0 -9
@@ -0,0 +1,242 @@
1
+ [@breautek/storm](../README.md) / Response
2
+
3
+ # Class: Response<TResponse, TErrorResponse\>
4
+
5
+ ## Type parameters
6
+
7
+ | Name | Type |
8
+ | :------ | :------ |
9
+ | `TResponse` | `SendableData` |
10
+ | `TErrorResponse` | `Error` \| [`IErrorResponse`](../interfaces/IErrorResponse.md) \| `string` |
11
+
12
+ ## Table of contents
13
+
14
+ ### Constructors
15
+
16
+ - [constructor](Response.md#constructor)
17
+
18
+ ### Methods
19
+
20
+ - [error](Response.md#error)
21
+ - [getStatus](Response.md#getstatus)
22
+ - [isHeadersSent](Response.md#isheaderssent)
23
+ - [pipe](Response.md#pipe)
24
+ - [redirect](Response.md#redirect)
25
+ - [send](Response.md#send)
26
+ - [setHeader](Response.md#setheader)
27
+ - [setHeaders](Response.md#setheaders)
28
+ - [setStatus](Response.md#setstatus)
29
+ - [success](Response.md#success)
30
+
31
+ ## Constructors
32
+
33
+ ### constructor
34
+
35
+ • **new Response**<`TResponse`, `TErrorResponse`\>(`response`, `requestURL`)
36
+
37
+ #### Type parameters
38
+
39
+ | Name | Type |
40
+ | :------ | :------ |
41
+ | `TResponse` | `any` |
42
+ | `TErrorResponse` | `string` \| `Error` \| [`IErrorResponse`](../interfaces/IErrorResponse.md) |
43
+
44
+ #### Parameters
45
+
46
+ | Name | Type |
47
+ | :------ | :------ |
48
+ | `response` | `Response`<`any`, `Record`<`string`, `any`\>\> |
49
+ | `requestURL` | `string` |
50
+
51
+ #### Defined in
52
+
53
+ [src/Response.ts:38](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L38)
54
+
55
+ ## Methods
56
+
57
+ ### error
58
+
59
+ ▸ **error**(`error?`): `void`
60
+
61
+ #### Parameters
62
+
63
+ | Name | Type |
64
+ | :------ | :------ |
65
+ | `error?` | `TErrorResponse` \| [`ResponseData`](ResponseData.md)<`TErrorResponse`\> |
66
+
67
+ #### Returns
68
+
69
+ `void`
70
+
71
+ #### Defined in
72
+
73
+ [src/Response.ts:130](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L130)
74
+
75
+ ___
76
+
77
+ ### getStatus
78
+
79
+ ▸ **getStatus**(): [`StatusCode`](../enums/StatusCode.md)
80
+
81
+ #### Returns
82
+
83
+ [`StatusCode`](../enums/StatusCode.md)
84
+
85
+ #### Defined in
86
+
87
+ [src/Response.ts:49](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L49)
88
+
89
+ ___
90
+
91
+ ### isHeadersSent
92
+
93
+ ▸ **isHeadersSent**(): `boolean`
94
+
95
+ #### Returns
96
+
97
+ `boolean`
98
+
99
+ #### Defined in
100
+
101
+ [src/Response.ts:126](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L126)
102
+
103
+ ___
104
+
105
+ ### pipe
106
+
107
+ ▸ **pipe**(`stream`): `void`
108
+
109
+ #### Parameters
110
+
111
+ | Name | Type |
112
+ | :------ | :------ |
113
+ | `stream` | `ReadableStream` |
114
+
115
+ #### Returns
116
+
117
+ `void`
118
+
119
+ #### Defined in
120
+
121
+ [src/Response.ts:99](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L99)
122
+
123
+ ___
124
+
125
+ ### redirect
126
+
127
+ ▸ **redirect**(`url`): `void`
128
+
129
+ #### Parameters
130
+
131
+ | Name | Type |
132
+ | :------ | :------ |
133
+ | `url` | `string` |
134
+
135
+ #### Returns
136
+
137
+ `void`
138
+
139
+ #### Defined in
140
+
141
+ [src/Response.ts:53](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L53)
142
+
143
+ ___
144
+
145
+ ### send
146
+
147
+ ▸ **send**(`data?`): `void`
148
+
149
+ #### Parameters
150
+
151
+ | Name | Type |
152
+ | :------ | :------ |
153
+ | `data?` | `Buffer` \| [`IErrorResponse`](../interfaces/IErrorResponse.md) \| [`StormError`](StormError.md)<`any`\> \| `TResponse` \| `TErrorResponse` |
154
+
155
+ #### Returns
156
+
157
+ `void`
158
+
159
+ #### Defined in
160
+
161
+ [src/Response.ts:94](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L94)
162
+
163
+ ___
164
+
165
+ ### setHeader
166
+
167
+ ▸ **setHeader**(`key`, `value`): `void`
168
+
169
+ #### Parameters
170
+
171
+ | Name | Type |
172
+ | :------ | :------ |
173
+ | `key` | `string` |
174
+ | `value` | `string` |
175
+
176
+ #### Returns
177
+
178
+ `void`
179
+
180
+ #### Defined in
181
+
182
+ [src/Response.ts:118](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L118)
183
+
184
+ ___
185
+
186
+ ### setHeaders
187
+
188
+ ▸ **setHeaders**(`keyValuePair`): `void`
189
+
190
+ #### Parameters
191
+
192
+ | Name | Type |
193
+ | :------ | :------ |
194
+ | `keyValuePair` | `IHeaderKeyValuePair` |
195
+
196
+ #### Returns
197
+
198
+ `void`
199
+
200
+ #### Defined in
201
+
202
+ [src/Response.ts:122](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L122)
203
+
204
+ ___
205
+
206
+ ### setStatus
207
+
208
+ ▸ **setStatus**(`status`): [`Response`](Response.md)<`TResponse`, `TErrorResponse`\>
209
+
210
+ #### Parameters
211
+
212
+ | Name | Type |
213
+ | :------ | :------ |
214
+ | `status` | [`StatusCode`](../enums/StatusCode.md) |
215
+
216
+ #### Returns
217
+
218
+ [`Response`](Response.md)<`TResponse`, `TErrorResponse`\>
219
+
220
+ #### Defined in
221
+
222
+ [src/Response.ts:44](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L44)
223
+
224
+ ___
225
+
226
+ ### success
227
+
228
+ ▸ **success**(`data?`): `void`
229
+
230
+ #### Parameters
231
+
232
+ | Name | Type |
233
+ | :------ | :------ |
234
+ | `data?` | `TResponse` |
235
+
236
+ #### Returns
237
+
238
+ `void`
239
+
240
+ #### Defined in
241
+
242
+ [src/Response.ts:107](https://github.com/breautek/storm/blob/3ad3438/src/Response.ts#L107)
@@ -1,9 +1,7 @@
1
- [@breautek/storm](../README.md) / [ResponseData](../modules/ResponseData.md) / ResponseData
1
+ [@breautek/storm](../README.md) / ResponseData
2
2
 
3
3
  # Class: ResponseData<TData\>
4
4
 
5
- [ResponseData](../modules/ResponseData.md).ResponseData
6
-
7
5
  ## Type parameters
8
6
 
9
7
  | Name | Type |
@@ -14,16 +12,16 @@
14
12
 
15
13
  ### Constructors
16
14
 
17
- - [constructor](ResponseData.ResponseData-1.md#constructor)
15
+ - [constructor](ResponseData.md#constructor)
18
16
 
19
17
  ### Methods
20
18
 
21
- - [getData](ResponseData.ResponseData-1.md#getdata)
22
- - [getHeaders](ResponseData.ResponseData-1.md#getheaders)
23
- - [getRedirect](ResponseData.ResponseData-1.md#getredirect)
24
- - [getStatus](ResponseData.ResponseData-1.md#getstatus)
25
- - [redirect](ResponseData.ResponseData-1.md#redirect)
26
- - [setHeader](ResponseData.ResponseData-1.md#setheader)
19
+ - [getData](ResponseData.md#getdata)
20
+ - [getHeaders](ResponseData.md#getheaders)
21
+ - [getRedirect](ResponseData.md#getredirect)
22
+ - [getStatus](ResponseData.md#getstatus)
23
+ - [redirect](ResponseData.md#redirect)
24
+ - [setHeader](ResponseData.md#setheader)
27
25
 
28
26
  ## Constructors
29
27
 
@@ -41,12 +39,12 @@
41
39
 
42
40
  | Name | Type |
43
41
  | :------ | :------ |
44
- | `status` | [`StatusCode`](../enums/StatusCode.StatusCode-1.md) |
42
+ | `status` | [`StatusCode`](../enums/StatusCode.md) |
45
43
  | `data?` | `TData` |
46
44
 
47
45
  #### Defined in
48
46
 
49
- [src/ResponseData.ts:25](https://github.com/breautek/storm/blob/8c3a317/src/ResponseData.ts#L25)
47
+ [src/ResponseData.ts:25](https://github.com/breautek/storm/blob/3ad3438/src/ResponseData.ts#L25)
50
48
 
51
49
  ## Methods
52
50
 
@@ -60,7 +58,7 @@
60
58
 
61
59
  #### Defined in
62
60
 
63
- [src/ResponseData.ts:44](https://github.com/breautek/storm/blob/8c3a317/src/ResponseData.ts#L44)
61
+ [src/ResponseData.ts:44](https://github.com/breautek/storm/blob/3ad3438/src/ResponseData.ts#L44)
64
62
 
65
63
  ___
66
64
 
@@ -74,7 +72,7 @@ ___
74
72
 
75
73
  #### Defined in
76
74
 
77
- [src/ResponseData.ts:36](https://github.com/breautek/storm/blob/8c3a317/src/ResponseData.ts#L36)
75
+ [src/ResponseData.ts:36](https://github.com/breautek/storm/blob/3ad3438/src/ResponseData.ts#L36)
78
76
 
79
77
  ___
80
78
 
@@ -88,21 +86,21 @@ ___
88
86
 
89
87
  #### Defined in
90
88
 
91
- [src/ResponseData.ts:52](https://github.com/breautek/storm/blob/8c3a317/src/ResponseData.ts#L52)
89
+ [src/ResponseData.ts:52](https://github.com/breautek/storm/blob/3ad3438/src/ResponseData.ts#L52)
92
90
 
93
91
  ___
94
92
 
95
93
  ### getStatus
96
94
 
97
- ▸ **getStatus**(): [`StatusCode`](../enums/StatusCode.StatusCode-1.md)
95
+ ▸ **getStatus**(): [`StatusCode`](../enums/StatusCode.md)
98
96
 
99
97
  #### Returns
100
98
 
101
- [`StatusCode`](../enums/StatusCode.StatusCode-1.md)
99
+ [`StatusCode`](../enums/StatusCode.md)
102
100
 
103
101
  #### Defined in
104
102
 
105
- [src/ResponseData.ts:40](https://github.com/breautek/storm/blob/8c3a317/src/ResponseData.ts#L40)
103
+ [src/ResponseData.ts:40](https://github.com/breautek/storm/blob/3ad3438/src/ResponseData.ts#L40)
106
104
 
107
105
  ___
108
106
 
@@ -122,7 +120,7 @@ ___
122
120
 
123
121
  #### Defined in
124
122
 
125
- [src/ResponseData.ts:48](https://github.com/breautek/storm/blob/8c3a317/src/ResponseData.ts#L48)
123
+ [src/ResponseData.ts:48](https://github.com/breautek/storm/blob/3ad3438/src/ResponseData.ts#L48)
126
124
 
127
125
  ___
128
126
 
@@ -143,4 +141,4 @@ ___
143
141
 
144
142
  #### Defined in
145
143
 
146
- [src/ResponseData.ts:32](https://github.com/breautek/storm/blob/8c3a317/src/ResponseData.ts#L32)
144
+ [src/ResponseData.ts:32](https://github.com/breautek/storm/blob/3ad3438/src/ResponseData.ts#L32)
@@ -0,0 +1,296 @@
1
+ [@breautek/storm](../README.md) / ServiceProvider
2
+
3
+ # Class: ServiceProvider
4
+
5
+ ## Table of contents
6
+
7
+ ### Constructors
8
+
9
+ - [constructor](ServiceProvider.md#constructor)
10
+
11
+ ### Methods
12
+
13
+ - [\_createURL](ServiceProvider.md#_createurl)
14
+ - [\_getApp](ServiceProvider.md#_getapp)
15
+ - [\_getBase](ServiceProvider.md#_getbase)
16
+ - [\_getDomain](ServiceProvider.md#_getdomain)
17
+ - [\_getPort](ServiceProvider.md#_getport)
18
+ - [\_getProtocol](ServiceProvider.md#_getprotocol)
19
+ - [delete](ServiceProvider.md#delete)
20
+ - [get](ServiceProvider.md#get)
21
+ - [getApp](ServiceProvider.md#getapp)
22
+ - [getVersion](ServiceProvider.md#getversion)
23
+ - [post](ServiceProvider.md#post)
24
+ - [put](ServiceProvider.md#put)
25
+ - [request](ServiceProvider.md#request)
26
+ - [urlSuffix](ServiceProvider.md#urlsuffix)
27
+
28
+ ## Constructors
29
+
30
+ ### constructor
31
+
32
+ • **new ServiceProvider**(`app`)
33
+
34
+ #### Parameters
35
+
36
+ | Name | Type |
37
+ | :------ | :------ |
38
+ | `app` | [`Application`](Application.md)<[`IConfig`](../interfaces/IConfig.md), [`IAuthTokenData`](../interfaces/IAuthTokenData.md), `any`, `any`\> |
39
+
40
+ #### Defined in
41
+
42
+ [src/ServiceProvider.ts:29](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L29)
43
+
44
+ ## Methods
45
+
46
+ ### \_createURL
47
+
48
+ ▸ `Protected` **_createURL**(`url`, `queryParams?`): `string`
49
+
50
+ #### Parameters
51
+
52
+ | Name | Type |
53
+ | :------ | :------ |
54
+ | `url` | `string` |
55
+ | `queryParams?` | `Record`<`any`, `any`\> |
56
+
57
+ #### Returns
58
+
59
+ `string`
60
+
61
+ #### Defined in
62
+
63
+ [src/ServiceProvider.ts:64](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L64)
64
+
65
+ ___
66
+
67
+ ### \_getApp
68
+
69
+ ▸ `Protected` **_getApp**(): [`Application`](Application.md)<[`IConfig`](../interfaces/IConfig.md), [`IAuthTokenData`](../interfaces/IAuthTokenData.md), `any`, `any`\>
70
+
71
+ #### Returns
72
+
73
+ [`Application`](Application.md)<[`IConfig`](../interfaces/IConfig.md), [`IAuthTokenData`](../interfaces/IAuthTokenData.md), `any`, `any`\>
74
+
75
+ #### Defined in
76
+
77
+ [src/ServiceProvider.ts:36](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L36)
78
+
79
+ ___
80
+
81
+ ### \_getBase
82
+
83
+ ▸ `Protected` `Abstract` **_getBase**(): `string`
84
+
85
+ #### Returns
86
+
87
+ `string`
88
+
89
+ #### Defined in
90
+
91
+ [src/ServiceProvider.ts:33](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L33)
92
+
93
+ ___
94
+
95
+ ### \_getDomain
96
+
97
+ ▸ `Protected` **_getDomain**(): `string`
98
+
99
+ #### Returns
100
+
101
+ `string`
102
+
103
+ #### Defined in
104
+
105
+ [src/ServiceProvider.ts:44](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L44)
106
+
107
+ ___
108
+
109
+ ### \_getPort
110
+
111
+ ▸ `Protected` `Abstract` **_getPort**(): `number`
112
+
113
+ #### Returns
114
+
115
+ `number`
116
+
117
+ #### Defined in
118
+
119
+ [src/ServiceProvider.ts:34](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L34)
120
+
121
+ ___
122
+
123
+ ### \_getProtocol
124
+
125
+ ▸ `Protected` **_getProtocol**(): `string`
126
+
127
+ #### Returns
128
+
129
+ `string`
130
+
131
+ #### Defined in
132
+
133
+ [src/ServiceProvider.ts:56](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L56)
134
+
135
+ ___
136
+
137
+ ### delete
138
+
139
+ ▸ **delete**(`url`, `accessToken`, `data?`, `headers?`, `additionalOptions?`): `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
140
+
141
+ #### Parameters
142
+
143
+ | Name | Type |
144
+ | :------ | :------ |
145
+ | `url` | `string` |
146
+ | `accessToken` | `string` |
147
+ | `data?` | `any` |
148
+ | `headers?` | [`IServiceHeaders`](../interfaces/IServiceHeaders.md) |
149
+ | `additionalOptions?` | `any` |
150
+
151
+ #### Returns
152
+
153
+ `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
154
+
155
+ #### Defined in
156
+
157
+ [src/ServiceProvider.ts:157](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L157)
158
+
159
+ ___
160
+
161
+ ### get
162
+
163
+ ▸ **get**(`url`, `accessToken`, `data?`, `headers?`, `additionalOptions?`): `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
164
+
165
+ #### Parameters
166
+
167
+ | Name | Type |
168
+ | :------ | :------ |
169
+ | `url` | `string` |
170
+ | `accessToken` | `string` |
171
+ | `data?` | `any` |
172
+ | `headers?` | [`IServiceHeaders`](../interfaces/IServiceHeaders.md) |
173
+ | `additionalOptions?` | `any` |
174
+
175
+ #### Returns
176
+
177
+ `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
178
+
179
+ #### Defined in
180
+
181
+ [src/ServiceProvider.ts:142](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L142)
182
+
183
+ ___
184
+
185
+ ### getApp
186
+
187
+ ▸ **getApp**(): [`Application`](Application.md)<[`IConfig`](../interfaces/IConfig.md), [`IAuthTokenData`](../interfaces/IAuthTokenData.md), `any`, `any`\>
188
+
189
+ #### Returns
190
+
191
+ [`Application`](Application.md)<[`IConfig`](../interfaces/IConfig.md), [`IAuthTokenData`](../interfaces/IAuthTokenData.md), `any`, `any`\>
192
+
193
+ #### Defined in
194
+
195
+ [src/ServiceProvider.ts:40](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L40)
196
+
197
+ ___
198
+
199
+ ### getVersion
200
+
201
+ ▸ **getVersion**(): `string`
202
+
203
+ #### Returns
204
+
205
+ `string`
206
+
207
+ #### Defined in
208
+
209
+ [src/ServiceProvider.ts:60](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L60)
210
+
211
+ ___
212
+
213
+ ### post
214
+
215
+ ▸ **post**(`url`, `accessToken`, `data?`, `headers?`, `additionalOptions?`): `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
216
+
217
+ #### Parameters
218
+
219
+ | Name | Type |
220
+ | :------ | :------ |
221
+ | `url` | `string` |
222
+ | `accessToken` | `string` |
223
+ | `data?` | `any` |
224
+ | `headers?` | [`IServiceHeaders`](../interfaces/IServiceHeaders.md) |
225
+ | `additionalOptions?` | `any` |
226
+
227
+ #### Returns
228
+
229
+ `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
230
+
231
+ #### Defined in
232
+
233
+ [src/ServiceProvider.ts:147](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L147)
234
+
235
+ ___
236
+
237
+ ### put
238
+
239
+ ▸ **put**(`url`, `accessToken`, `data?`, `headers?`, `additionalOptions?`): `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
240
+
241
+ #### Parameters
242
+
243
+ | Name | Type |
244
+ | :------ | :------ |
245
+ | `url` | `string` |
246
+ | `accessToken` | `string` |
247
+ | `data?` | `any` |
248
+ | `headers?` | [`IServiceHeaders`](../interfaces/IServiceHeaders.md) |
249
+ | `additionalOptions?` | `any` |
250
+
251
+ #### Returns
252
+
253
+ `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
254
+
255
+ #### Defined in
256
+
257
+ [src/ServiceProvider.ts:152](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L152)
258
+
259
+ ___
260
+
261
+ ### request
262
+
263
+ ▸ **request**(`method`, `url`, `accessToken`, `data`, `headers?`, `additionalOptions?`): `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
264
+
265
+ #### Parameters
266
+
267
+ | Name | Type |
268
+ | :------ | :------ |
269
+ | `method` | [`HTTPMethod`](../enums/HTTPMethod.md) |
270
+ | `url` | `string` |
271
+ | `accessToken` | `string` |
272
+ | `data` | `any` |
273
+ | `headers?` | [`IServiceHeaders`](../interfaces/IServiceHeaders.md) |
274
+ | `additionalOptions?` | `any` |
275
+
276
+ #### Returns
277
+
278
+ `Promise`<[`ServiceResponse`](ServiceResponse.md)\>
279
+
280
+ #### Defined in
281
+
282
+ [src/ServiceProvider.ts:82](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L82)
283
+
284
+ ___
285
+
286
+ ### urlSuffix
287
+
288
+ ▸ **urlSuffix**(): `string`
289
+
290
+ #### Returns
291
+
292
+ `string`
293
+
294
+ #### Defined in
295
+
296
+ [src/ServiceProvider.ts:52](https://github.com/breautek/storm/blob/3ad3438/src/ServiceProvider.ts#L52)
@@ -1,20 +1,18 @@
1
- [@breautek/storm](../README.md) / [ServiceResponse](../modules/ServiceResponse.md) / ServiceResponse
1
+ [@breautek/storm](../README.md) / ServiceResponse
2
2
 
3
3
  # Class: ServiceResponse
4
4
 
5
- [ServiceResponse](../modules/ServiceResponse.md).ServiceResponse
6
-
7
5
  ## Table of contents
8
6
 
9
7
  ### Constructors
10
8
 
11
- - [constructor](ServiceResponse.ServiceResponse-1.md#constructor)
9
+ - [constructor](ServiceResponse.md#constructor)
12
10
 
13
11
  ### Methods
14
12
 
15
- - [getJSON](ServiceResponse.ServiceResponse-1.md#getjson)
16
- - [getRaw](ServiceResponse.ServiceResponse-1.md#getraw)
17
- - [getUTF8](ServiceResponse.ServiceResponse-1.md#getutf8)
13
+ - [getJSON](ServiceResponse.md#getjson)
14
+ - [getRaw](ServiceResponse.md#getraw)
15
+ - [getUTF8](ServiceResponse.md#getutf8)
18
16
 
19
17
  ## Constructors
20
18
 
@@ -31,7 +29,7 @@
31
29
 
32
30
  #### Defined in
33
31
 
34
- [src/ServiceResponse.ts:23](https://github.com/breautek/storm/blob/8c3a317/src/ServiceResponse.ts#L23)
32
+ [src/ServiceResponse.ts:23](https://github.com/breautek/storm/blob/3ad3438/src/ServiceResponse.ts#L23)
35
33
 
36
34
  ## Methods
37
35
 
@@ -45,7 +43,7 @@
45
43
 
46
44
  #### Defined in
47
45
 
48
- [src/ServiceResponse.ts:36](https://github.com/breautek/storm/blob/8c3a317/src/ServiceResponse.ts#L36)
46
+ [src/ServiceResponse.ts:36](https://github.com/breautek/storm/blob/3ad3438/src/ServiceResponse.ts#L36)
49
47
 
50
48
  ___
51
49
 
@@ -59,7 +57,7 @@ ___
59
57
 
60
58
  #### Defined in
61
59
 
62
- [src/ServiceResponse.ts:28](https://github.com/breautek/storm/blob/8c3a317/src/ServiceResponse.ts#L28)
60
+ [src/ServiceResponse.ts:28](https://github.com/breautek/storm/blob/3ad3438/src/ServiceResponse.ts#L28)
63
61
 
64
62
  ___
65
63
 
@@ -73,4 +71,4 @@ ___
73
71
 
74
72
  #### Defined in
75
73
 
76
- [src/ServiceResponse.ts:32](https://github.com/breautek/storm/blob/8c3a317/src/ServiceResponse.ts#L32)
74
+ [src/ServiceResponse.ts:32](https://github.com/breautek/storm/blob/3ad3438/src/ServiceResponse.ts#L32)