Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitAuto: [FEATURE] Implement SKU Service Value API #403

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Download the latest zip file from the [Release](https://github.com/GuiBranco/VTE
## Features

Implements all features of VTEX API available at [VTEX Developer Docs](https://developers.vtex.com/)
- SKU Service Value API: Create, update, and delete SKU Service Values to manage service charges associated with SKUs.

---

Expand Down
1 change: 1 addition & 0 deletions Src/VTEX.API/VTEX.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
<ItemGroup>
<PackageReference Include="CrispyWaffle" Version="9.1.101" />
</ItemGroup>
<Compile Include="Controllers\SkuServiceValueController.cs" />

</Project>
1 change: 1 addition & 0 deletions Src/VTEX.Core/VTEX.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
<ItemGroup>
<PackageReference Include="CrispyWaffle" Version="9.1.101" />
</ItemGroup>
<Compile Include="Services\SkuServiceValueService.cs" />

</Project>
1 change: 1 addition & 0 deletions Src/VTEX/DataEntities/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ namespace VTEX.DataEntities
using CrispyWaffle.Serialization;
using Newtonsoft.Json;
using ValueObjects;
using VTEX.DataEntities.SkuServiceValue;

/// <summary>
/// The client data entity class.
Expand Down
1 change: 1 addition & 0 deletions Src/VTEX/GoodPractices/BridgeException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ namespace VTEX.GoodPractices
using System;
using System.Runtime.Serialization;

using VTEX.GoodPractices.SkuServiceValueExceptions;
/// <summary>
/// Class BridgeException. This class cannot be inherited.
/// </summary>
Expand Down
Loading