Skip to content

Commit

Permalink
Merge pull request #1060 from clement911/master
Browse files Browse the repository at this point in the history
Upgraded lib to API 2024-04
  • Loading branch information
clement911 committed Apr 30, 2024
2 parents 95d4df5 + 219d540 commit af21509
Show file tree
Hide file tree
Showing 7 changed files with 3,421 additions and 315 deletions.
3 changes: 2 additions & 1 deletion ShopifySharp.Tests/GenerateGraphQLSchema_Test.cs
Expand Up @@ -28,7 +28,8 @@ public async Task GenerateGraphQLTypes()
{ "JSON", "string" },
{ "FormattedString", "string" },
{ "ARN", "string" },
{ "StorefrontID", "string" }
{ "StorefrontID", "string" },
{ "Color", "string" },
};
string csharpCode = await new GraphQLTypeGenerator().GenerateTypesAsync("ShopifySharp.GraphQL", scalarNameToTypeName, async query =>
{
Expand Down
2 changes: 2 additions & 0 deletions ShopifySharp/Entities/FulfillmentServiceEntity.cs
@@ -1,4 +1,5 @@
using Newtonsoft.Json;
using System;

namespace ShopifySharp
{
Expand Down Expand Up @@ -91,6 +92,7 @@ public class FulfillmentServiceEntity : ShopifyObject
/// Whether the fulfillment service wants to register for APIs related to fulfillment orders.
/// </summary>
[JsonProperty("fulfillment_orders_opt_in")]
[Obsolete("https://shopify.dev/changelog/deprecation-of-the-fulfillmentservice-fulfillmentordersoptin-field")]
public bool? FulfillmentOrdersOptIn { get; set; }
}
}

0 comments on commit af21509

Please sign in to comment.