Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/OrderCloud.SDK/Generated/ErrorCodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public static class IntegrationEvent
public const string IncompatibleEventType = "IntegrationEvent.IncompatibleEventType";
/// <summary>Something went wrong when we called your integration event, check your custom code and try again.</summary>
public const string BadRequest = "IntegrationEvent.BadRequest";
/// <summary>IntegrationEvents require at least one ApiClient to be configured with AllowSeller = true in order to generate an elevated role token.</summary>
/// <summary>IntegrationEvents require at least one active ApiClient with AllowSeller = true in order to generate an elevated role token.</summary>
public const string AllowSellerApiClientRequired = "IntegrationEvent.AllowSellerApiClientRequired";
/// <summary>You must estimate shipping costs prior to setting your shipping method.</summary>
public const string MustCalculateShipping = "IntegrationEvent.MustCalculateShipping";
Expand Down
4 changes: 2 additions & 2 deletions src/OrderCloud.SDK/Generated/Models.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3221,10 +3221,10 @@ public class Shipment<Txp, TFromAddress, TToAddress> : Shipment
}
public class ShipmentItem : OrderCloudModel
{
/// <summary>ID of the order. Required.</summary>
/// <summary>ID of the order. Required. Sortable.</summary>
[Required]
public string OrderID { get => GetProp<string>("OrderID"); set => SetProp<string>("OrderID", value); }
/// <summary>ID of the line item. Required.</summary>
/// <summary>ID of the line item. Required. Sortable.</summary>
[Required]
public string LineItemID { get => GetProp<string>("LineItemID"); set => SetProp<string>("LineItemID", value); }
/// <summary>Quantity shipped of the shipment item. Required.</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/OrderCloud.SDK/OrderCloud.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- https://docs.microsoft.com/en-us/dotnet/core/tools/csproj -->
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>0.18.10</Version>
<Version>0.18.11</Version>
<PackageId>OrderCloud.SDK</PackageId>
<Title>OrderCloud SDK</Title>
<Authors>Todd Menier</Authors>
Expand Down