Skip to content

Commit

Permalink
Bump csharpier from 0.28.2 to 0.29.1 (#292)
Browse files Browse the repository at this point in the history
* Bump csharpier from 0.28.2 to 0.29.1

Bumps [csharpier](https://github.com/belav/csharpier) from 0.28.2 to 0.29.1.
- [Release notes](https://github.com/belav/csharpier/releases)
- [Changelog](https://github.com/belav/csharpier/blob/main/CHANGELOG.md)
- [Commits](belav/csharpier@0.28.2...0.29.1)

---
updated-dependencies:
- dependency-name: csharpier
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* CSharpier format

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: gstraccini[bot] <150967461+gstraccini[bot]@users.noreply.github.com>
Co-authored-by: gstraccini[bot] <51682906+gstraccini[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Aug 27, 2024
1 parent e63eb16 commit e38baad
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"csharpier": {
"version": "0.28.2",
"version": "0.29.1",
"commands": [
"dotnet-csharpier"
]
Expand Down
2 changes: 1 addition & 1 deletion Src/VTEX/Enums/InvoiceType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public enum InvoiceType
/// </summary>
[InternalValue("Input")]
[HumanReadable("Input")]
INPUT
INPUT,
}
}
2 changes: 1 addition & 1 deletion Src/VTEX/Enums/OrderStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,6 @@ public enum OrderStatus
/// </summary>
[HumanReadable("Authorize fulfillment")]
[InternalValue("authorize-fulfillment")]
AUTHORIZE_FULFILLMENT
AUTHORIZE_FULFILLMENT,
}
}
2 changes: 1 addition & 1 deletion Src/VTEX/Enums/RequestEndpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ public enum RequestEndpoint
/// <summary>
/// The health
/// </summary>
HEALTH
HEALTH,
}
}
8 changes: 4 additions & 4 deletions Src/VTEX/VTEXContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private OrdersList GetOrdersListInternal(
var queryString = new Dictionary<string, string>
{
{ @"page", @"0" },
{ @"per_page", @"50" }
{ @"per_page", @"50" },
};
if (!string.IsNullOrWhiteSpace(status))
{
Expand Down Expand Up @@ -1164,7 +1164,7 @@ public IEnumerable<BridgeFacet> GetBridgeFacets(
var queryString = new Dictionary<string, string>
{
{ @"_facets", @"Origin,Status" },
{ @"_where", query }
{ @"_where", query },
};
if (!string.IsNullOrWhiteSpace(keywords))
{
Expand Down Expand Up @@ -1228,7 +1228,7 @@ int limit
{ @"_where", query },
{ @"_sort", sort },
{ @"offSet", offSet.ToString() },
{ @"limit", limit.ToString() }
{ @"limit", limit.ToString() },
};
if (!string.IsNullOrWhiteSpace(keywords))
{
Expand Down Expand Up @@ -1526,7 +1526,7 @@ CancellationToken token
var queryString = new Dictionary<string, string>
{
{ searchedField, searchedValue },
{ @"_fields", @"_all" }
{ @"_fields", @"_all" },
};
var json = string.Empty;
try
Expand Down
4 changes: 2 additions & 2 deletions Src/VTEX/VTEXWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ UriBuilder uriBuilder
case HttpRequestMethod.PATCH:
var request = new HttpRequestMessage(new HttpMethod(@"PATCH"), uriBuilder.Uri)
{
Content = content
Content = content,
};
response = await client.SendAsync(request, token).ConfigureAwait(false);
request.Dispose();
Expand Down Expand Up @@ -427,7 +427,7 @@ ref requiresAuthentication

var builder = new UriBuilder(protocol, host, port, endpoint)
{
Query = query.Replace(@"?", string.Empty)
Query = query.Replace(@"?", string.Empty),
};
return await ServiceInvokerInternal(
method,
Expand Down
4 changes: 2 additions & 2 deletions Tests/VTEX.Tests/Health/VtexHealthClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ public async Task ValidateHealthClient()
LastResult = DateTime.Now,
Status = ResultStatus.HEALTHY,
Name = "Test",
LastResultStatus = "healthy"
LastResultStatus = "healthy",
},
new PlatformStatus
{
LastResult = DateTime.Now,
Status = ResultStatus.UNHEALTHY,
Name = "Test unhealthy",
LastResultStatus = "healthy"
LastResultStatus = "healthy",
},
};

Expand Down

0 comments on commit e38baad

Please sign in to comment.