diff --git a/src/VirtoCommerce.Xapi.Core/Schemas/DynamicPropertyType.cs b/src/VirtoCommerce.Xapi.Core/Schemas/DynamicPropertyType.cs index 2b5352e..be8fa92 100644 --- a/src/VirtoCommerce.Xapi.Core/Schemas/DynamicPropertyType.cs +++ b/src/VirtoCommerce.Xapi.Core/Schemas/DynamicPropertyType.cs @@ -28,10 +28,6 @@ public DynamicPropertyType(IMediator mediator) return context.Source.DisplayNames.FirstOrDefault(x => culture.IsNullOrEmpty() || x.Locale.EqualsInvariant(culture))?.Name; }); Field(x => x.DisplayOrder, nullable: true).Description("The order for the dynamic property to display"); - Field>(nameof(DynamicProperty.ValueType)) - .Description("Value type") - .DeprecationReason("Use dynamicPropertyValueType instead") - .Resolve(context => context.Source.ValueType.ToString()); Field>("dynamicPropertyValueType") .Description("Value type") .Resolve(context => context.Source.ValueType); diff --git a/src/VirtoCommerce.Xapi.Core/Schemas/StoreSettingsType.cs b/src/VirtoCommerce.Xapi.Core/Schemas/StoreSettingsType.cs index a54f78b..8e9c561 100644 --- a/src/VirtoCommerce.Xapi.Core/Schemas/StoreSettingsType.cs +++ b/src/VirtoCommerce.Xapi.Core/Schemas/StoreSettingsType.cs @@ -7,11 +7,6 @@ public class StoreSettingsType : ExtendableGraphType { public StoreSettingsType() { -#pragma warning disable VC0009 - Field(x => x.QuotesEnabled).Description("Quotes enabled").DeprecationReason("Use Quotes.EnableQuotes public property instead."); - Field(x => x.SubscriptionEnabled).Description("Subscription enabled").DeprecationReason("Use Subscription.EnableSubscriptions public property instead."); - Field(x => x.IsSpa).Description("SPA").DeprecationReason("Client application should use own business logic for SPA detection."); -#pragma warning restore VC0009 Field(x => x.TaxCalculationEnabled).Description("Tax calculation enabled"); Field(x => x.AnonymousUsersAllowed).Description("Allow anonymous users to visit the store "); Field(x => x.EmailVerificationEnabled).Description("Email address verification enabled");