Skip to content

Commit 137f7f2

Browse files
committed
Regenerate GraphQL models based on latest changes
type: chore scope: generated-graphql
1 parent bdb99e6 commit 137f7f2

File tree

3,069 files changed

+3294
-1465
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,069 files changed

+3294
-1465
lines changed

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckout.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// A checkout that was abandoned by the customer.
@@ -27,18 +28,12 @@ public record AbandonedCheckout : IGraphQLObject, INavigable, INode
2728
/// Null if the checkout has not been completed.
2829
/// </summary>
2930
[JsonPropertyName("completedAt")]
30-
#if NETSTANDARD2_0
31-
[System.Text.Json.DateOnlyConverter]
32-
#endif
3331
public DateTime? completedAt { get; set; } = null;
3432

3533
/// <summary>
3634
/// The date and time when the checkout was created.
3735
/// </summary>
3836
[JsonPropertyName("createdAt")]
39-
#if NETSTANDARD2_0
40-
[System.Text.Json.DateOnlyConverter]
41-
#endif
4237
public DateTime? createdAt { get; set; } = null;
4338

4439
/// <summary>
@@ -157,8 +152,5 @@ public record AbandonedCheckout : IGraphQLObject, INavigable, INode
157152
/// The date and time when the checkout was most recently updated.
158153
/// </summary>
159154
[JsonPropertyName("updatedAt")]
160-
#if NETSTANDARD2_0
161-
[System.Text.Json.DateOnlyConverter]
162-
#endif
163155
public DateTime? updatedAt { get; set; } = null;
164156
}

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckoutConnection.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// An auto-generated type for paginating through multiple AbandonedCheckouts.

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckoutEdge.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// An auto-generated type which holds one AbandonedCheckout and a cursor during pagination.

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckoutLineItem.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// A single line item in an abandoned checkout.

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckoutLineItemComponent.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// The list of line item components that belong to a line item.

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckoutLineItemConnection.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// An auto-generated type for paginating through multiple AbandonedCheckoutLineItems.

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckoutLineItemEdge.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// An auto-generated type which holds one AbandonedCheckoutLineItem and a cursor during pagination.

ShopifySharp/Entities/GraphQL/Generated/AbandonedCheckoutSortKeys.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// The set of valid sort keys for the AbandonedCheckout query.

ShopifySharp/Entities/GraphQL/Generated/Abandonment.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// A browse, cart, or checkout that was abandoned by a customer.
@@ -37,9 +38,6 @@ public record Abandonment : IGraphQLObject, INode
3738
/// The date and time when the abandonment was created.
3839
/// </summary>
3940
[JsonPropertyName("createdAt")]
40-
#if NETSTANDARD2_0
41-
[System.Text.Json.DateOnlyConverter]
42-
#endif
4341
public DateTime? createdAt { get; set; } = null;
4442

4543
/// <summary>
@@ -70,9 +68,6 @@ public record Abandonment : IGraphQLObject, INode
7068
/// When the email was sent, if that's the case.
7169
/// </summary>
7270
[JsonPropertyName("emailSentAt")]
73-
#if NETSTANDARD2_0
74-
[System.Text.Json.DateOnlyConverter]
75-
#endif
7671
public DateTime? emailSentAt { get; set; } = null;
7772

7873
/// <summary>
@@ -133,27 +128,18 @@ public record Abandonment : IGraphQLObject, INode
133128
/// The date for the latest browse abandonment.
134129
/// </summary>
135130
[JsonPropertyName("lastBrowseAbandonmentDate")]
136-
#if NETSTANDARD2_0
137-
[System.Text.Json.DateOnlyConverter]
138-
#endif
139131
public DateTime? lastBrowseAbandonmentDate { get; set; } = null;
140132

141133
/// <summary>
142134
/// The date for the latest cart abandonment.
143135
/// </summary>
144136
[JsonPropertyName("lastCartAbandonmentDate")]
145-
#if NETSTANDARD2_0
146-
[System.Text.Json.DateOnlyConverter]
147-
#endif
148137
public DateTime? lastCartAbandonmentDate { get; set; } = null;
149138

150139
/// <summary>
151140
/// The date for the latest checkout abandonment.
152141
/// </summary>
153142
[JsonPropertyName("lastCheckoutAbandonmentDate")]
154-
#if NETSTANDARD2_0
155-
[System.Text.Json.DateOnlyConverter]
156-
#endif
157143
public DateTime? lastCheckoutAbandonmentDate { get; set; } = null;
158144

159145
/// <summary>
@@ -178,8 +164,5 @@ public record Abandonment : IGraphQLObject, INode
178164
/// The date and time when the visit started.
179165
/// </summary>
180166
[JsonPropertyName("visitStartedAt")]
181-
#if NETSTANDARD2_0
182-
[System.Text.Json.DateOnlyConverter]
183-
#endif
184167
public DateTime? visitStartedAt { get; set; } = null;
185168
}

ShopifySharp/Entities/GraphQL/Generated/AbandonmentAbandonmentType.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace ShopifySharp.GraphQL;
33
using System;
44
using System.Text.Json.Serialization;
55
using System.Collections.Generic;
6+
using ShopifySharp.Infrastructure.Serialization.Json;
67

78
/// <summary>
89
/// Specifies the abandonment type.

0 commit comments

Comments
 (0)