diff --git a/Dofusdude.Api.sln b/Dofusdude.Api.sln index 87d5229..89aa756 100644 --- a/Dofusdude.Api.sln +++ b/Dofusdude.Api.sln @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 VisualStudioVersion = 12.0.0.0 MinimumVisualStudioVersion = 10.0.0.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dofusdude.Api", "src\Dofusdude.Api\Dofusdude.Api.csproj", "{A9C9C419-565B-4E47-9248-D69F54DF32E3}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dofusdude.Api", "src\Dofusdude.Api\Dofusdude.Api.csproj", "{B81B6B5C-940F-46EF-91C9-8AE6ED02B691}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dofusdude.Api.Test", "src\Dofusdude.Api.Test\Dofusdude.Api.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}" EndProject @@ -12,10 +12,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A9C9C419-565B-4E47-9248-D69F54DF32E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A9C9C419-565B-4E47-9248-D69F54DF32E3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A9C9C419-565B-4E47-9248-D69F54DF32E3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A9C9C419-565B-4E47-9248-D69F54DF32E3}.Release|Any CPU.Build.0 = Release|Any CPU + {B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B81B6B5C-940F-46EF-91C9-8AE6ED02B691}.Release|Any CPU.Build.0 = Release|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU {19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/api/openapi.yaml b/api/openapi.yaml index 47f2b5d..f7b55fd 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -3536,7 +3536,6 @@ paths: name: "range[from]" required: false schema: - example: 2016-09-15 format: date type: string style: form @@ -3546,7 +3545,6 @@ paths: name: "range[to]" required: false schema: - example: 2016-09-28 format: date type: string style: form diff --git a/docs/AlmanaxApi.md b/docs/AlmanaxApi.md index 54835f1..cb00bae 100644 --- a/docs/AlmanaxApi.md +++ b/docs/AlmanaxApi.md @@ -127,8 +127,8 @@ namespace Example var apiInstance = new AlmanaxApi(config); var language = fr; // string | code var filterBonusType = experience-points; // string? | ids from meta/{language}/almanax/bonuses (optional) - var rangeFrom = Thu Sep 15 00:00:00 UTC 2016; // DateOnly? | yyyy-mm-dd (optional) - var rangeTo = Wed Sep 28 00:00:00 UTC 2016; // DateOnly? | yyyy-mm-dd (optional) + var rangeFrom = DateOnly.Parse("2013-10-20"); // DateOnly? | yyyy-mm-dd (optional) + var rangeTo = DateOnly.Parse("2013-10-20"); // DateOnly? | yyyy-mm-dd (optional) var rangeSize = -1; // int? | size of the returned range (optional) var timezone = Europe/Paris; // string? | determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. (optional) (default to "Europe/Paris")