116 Commits

Author SHA1 Message Date
f116be9908 Added readme to nuget package. 2024-09-11 17:52:08 -07:00
2c2b498223 Added mimeType option to the WithStream extension. Bumped package version to 1.8.7 2024-08-29 10:18:36 -07:00
bc82aeb8c2 Added new WithStream extension for responses. Bumped package version to 1.8.6 2024-08-29 10:12:44 -07:00
670605ce91 Bumped package version to 1.8.5. Added enum route argument converting support. Cleaned up code and added unit test. 2024-07-10 06:37:02 -07:00
a698e71e4b Fixed a minor issue where the request parameter was the same name as the request object in javascript route functions. Bumped package version to 1.8.4 2024-03-06 08:14:40 -08:00
51b8ba073c Bumped package version to 1.8.3. Added code to escape the names of fields, properties when generating the constructor. 2024-02-23 16:55:40 -08:00
b8e8e1dd86 Bumped package version to 1.8.2. Added the ability to use json names in the Javascript Client generator if a JsonProperty exists on a field or a property. 2024-02-23 16:23:54 -08:00
cc83f99612 Bumped package version to 1.8.1. Javascript client now includes a urlHandler and requestHandler that can be used to modify the request before it's sent. 2024-02-19 08:42:58 -08:00
8747b5fb3e Modifying client generator to allow modifying requests before they are sent. 2024-02-19 08:05:48 -08:00
50861d5381 Bumped package version to 1.8.0. Added support for automatic gzip decompression in HttpListenerRequestExtensions. Added a new compress parameter for json requests in client generated code that auto compresses the json if set. Fixed a few bugs and cleaned up code. 2024-01-13 10:53:44 -08:00
5f83b30cb2 Added ability to specify a RouteResponse and RouteRequest as a dynamic. Improved documentation and fixed some null checks that were missing with this change. Bumped package version to 1.7.6 2023-12-14 11:33:42 -08:00
38ef135b8a Fixed a stackoverflow bug when generating a Rest Client and the object has it's type as a sub type. Bumped package versino to 1.7.5 2023-12-14 11:14:27 -08:00
9633e211a1 Fixed an accidental bug introduced to the client generation. Bumped package version to 1.7.4 2023-09-24 19:49:25 -07:00
b9260dbdb1 Fixed a bug where a double empty constructor could be generated for a C# client if there is no fields/properties. Bumped package version to 1.7.3 2023-09-24 19:34:26 -07:00
4c64f1c134 Modified Javascript Client generator to throw the response instead of a message so that behavior of the code using the Client can changed based on the response returned. Bumped package version to 1.7.2 2023-07-28 15:23:29 -07:00
2f71c18b65 Fixed an issue where if a route didn't end with a /, the generated code would still contain an ending slash. Bumped package version to 1.7.1 2023-07-11 09:52:15 -07:00
69a1d9c3a8 Improved RouteMatcher and added more unit tests to cover some edge cases. Cleaned up code. Bumped package version to 1.7.0 2023-07-09 11:14:33 -07:00
8c44d56ab4 Added utf16 response extensions to help support some legacy code. Changed HttpListener to protected to help with overriding the default behavior of the RouteListener if needed. Bumped package version to 1.6.9 2023-07-05 08:04:56 -07:00
4b05b1b6b9 Fixed an absolutely stupid bug. Bumped package version to 1.6.8 2023-06-29 10:00:59 -07:00
7934f807ef Improved file serving to support startPaths. Improved code and simplified a few things. Bumped package version to 1.6.7 2023-06-29 09:50:12 -07:00
36872164c5 Improved SinglePage algorithm. Bumped package version to 1.6.6 2023-06-29 09:29:21 -07:00
dc1abd516b Added missing code to the ServeSinglePage. Bumped package version to 1.6.5 2023-06-29 08:37:45 -07:00
4617f861fc Added support for cases where the parent directory is included in the request path. Added unit tests to check this case. Bumped package version to 1.6.4 2023-06-29 08:21:54 -07:00
46aab308fa Merge pull request 'ServeFileExtension' (#2) from ServeFileExtension into master
Reviewed-on: #2
2023-06-29 01:39:07 +00:00
c2f60ff19f Bumped package version to 1.6.3. Added unit tests for serving files. Fixed issues and improved the security of the serve file extensions and the ability to compress files. 2023-06-28 18:37:46 -07:00
d96c44e542 Working on code and tests for a serve file extension to make developing a small web server easier. 2023-06-28 17:41:31 -07:00
8467251a17 Working on ServeMultiPage and ServeSinglePage to help make it easier to serve a website using this library. 2023-06-28 16:35:34 -07:00
ac2f63229c Fixed a minor bug with the GetValue Javascript generated function. Bumped package version to 1.6.2 2023-06-16 10:28:31 -07:00
9367ba0ff5 Bumped package version to 1.6.1 and added helper GetValue function to Javascript and improved the documentation. 2023-06-16 10:17:21 -07:00
52a6db9e1a Added ReadAsForm to the RequestExtensions to help with reading form data. Bumped package verison to 1.6.0 2023-06-09 14:53:41 -07:00
efd744974d Bumped package version to 1.5.9, exposed a parameter in the init method to allow a custom message handler to be used with the client for C#. 2023-06-01 06:29:39 -07:00
22ff3c1312 Fixed a bug with boolean default values. Bumped package version to 1.5.8. 2023-05-29 07:08:30 -07:00
a630f0e334 Fixed a csharp client generator bug. The csharp client generator now outputs a constructor for types that allows setting property/fields. Bumped package version to 1.5.7 2023-05-29 06:47:52 -07:00
755a2399e4 Bumped package version to 1.5.6 added a helper function to get the name from a enum value. 2023-05-22 08:59:56 -07:00
5e814e81c6 Bumped package version to 1.5.5, added code to the CSharp client generator to generate a empty constructor and a constructor that can take an existing instance of a dto and automatically copy all the values. 2023-05-19 07:25:55 -07:00
5048640a53 Bumped package version to 1.5.4, changed @method to use @function in client generator for javascript. Added blob support for requests. 2023-04-20 16:31:41 -07:00
16c1bb878c Added GetNamesValues function to javascript client generator output. Bumped package version to 1.5.3. 2023-04-20 08:50:28 -07:00
54e1fbefec Removed enum extends since it's not super helpful. Bumped package version to 1.5.2. 2023-04-14 06:44:30 -07:00
bbd38496da Bumped package version to 1.5.1, added GetNames/GetValues helper functions to Javascript Enum Type class. 2023-04-14 06:38:01 -07:00
fe5fc73d14 Bumped package version to 1.5.0, changed Program.cs a little of the example. Improved the Javascript Client generator by exporting all types and changing enum to behave in a more useful way. 2023-04-13 15:00:24 -07:00
e2c5aba868 Added Javascript client generator. Fixed a few bugs. Improved client generator code. 2023-04-12 18:03:55 -07:00
6a7f6ce096 Modified ClientGenerator to support responses as a parameter input. Improved streams support. Bumped package version to 1.4.8 2023-03-31 09:19:22 -07:00
b9e1f2ca7d Modified GetMimeType to return binary type if there is no extension. 2023-03-31 08:44:45 -07:00
cf477522c0 Bumped package version to 1.4.7. Added support for Stream requests and MemoryStream responses. 2023-03-31 08:21:32 -07:00
fe99ba9b9d Added RouteTypeName attribute that can be used to rename a type when generating client code. 2023-03-31 07:02:44 -07:00
4bc388d86b Bumped package version to 1.4.5 and modified ClientGenerator to include System.Net assembly as a DotNet type. 2023-03-30 10:36:51 -07:00
71941f5dd0 Changed RouteListener to attempt to listen on all interfaces, if denied it falls back to local. Bumped package version to 1.4.4 2023-03-28 06:20:20 -07:00
0c8467f942 Fixed an issue where built int Enums would be converted to int type for fields. Bumped package version to 1.4.3. 2023-03-24 08:21:12 -07:00
f2db3bddbf Changed logo to new design. 2023-03-24 07:38:53 -07:00
ff7c356655 Improved route function generator to handle status codes better and check to see if json content was null or empty and return default. Bumped package version to 1.4.2 2023-03-24 07:33:35 -07:00