Skip to content

Commit

Permalink
VCST-2044: Extended Cart Schema with CheckoutId (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ljutyj authored Nov 14, 2024
1 parent 1c2b64f commit 29d20ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/VirtoCommerce.XCart.Core/Schemas/CartType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public CartType(
Field(x => x.Cart.IsRecuring, nullable: true).Description("Displays whether the shopping cart is recurring");
Field(x => x.Cart.Comment, nullable: true).Description("Shopping cart text comment");
Field(x => x.Cart.PurchaseOrderNumber, nullable: true).Description("Purchase order number");
Field(x => x.Cart.CheckoutId, nullable: false).Description("Cart checkout ID");

// Characteristics
Field(x => x.Cart.VolumetricWeight, nullable: true).Description("Shopping cart volumetric weight value");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="VirtoCommerce.Xapi.Core" Version="3.809.0" />
<PackageReference Include="VirtoCommerce.XCatalog.Core" Version="3.813.0" />
<PackageReference Include="VirtoCommerce.CartModule.Core" Version="3.813.0" />
<PackageReference Include="VirtoCommerce.CartModule.Core" Version="3.817.0" />
<PackageReference Include="VirtoCommerce.PaymentModule.Core" Version="3.804.0" />
<PackageReference Include="VirtoCommerce.ShippingModule.Core" Version="3.802.0" />
<PackageReference Include="VirtoCommerce.InventoryModule.Core" Version="3.805.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/VirtoCommerce.XCart.Web/module.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<platformVersion>3.861.0</platformVersion>
<dependencies>
<dependency id="VirtoCommerce.Cart" version="3.813.0" />
<dependency id="VirtoCommerce.Cart" version="3.817.0" />
<dependency id="VirtoCommerce.Inventory" version="3.805.0" />
<dependency id="VirtoCommerce.Marketing" version="3.812.0" />
<dependency id="VirtoCommerce.Payment" version="3.804.0" />
Expand Down

0 comments on commit 29d20ab

Please sign in to comment.