From 94843040d2ce87cd06d44031175a585241b50336 Mon Sep 17 00:00:00 2001 From: martins2 Date: Thu, 21 Oct 2021 16:39:33 +0200 Subject: [PATCH 1/2] 284 move to folder Delivery.Urls folder and adjust namespace --- .../ImageUrlBuilderTests.cs | 6 +++--- .../Kentico.Kontent.Delivery.Urls.Tests.csproj | 2 +- .../DeliveryEndpointUrlBuilder.cs | 0 .../ImageTransformation/ImageCompression.cs | 2 +- .../ImageTransformation/ImageFitMode.cs | 2 +- .../ImageTransformation/ImageFormat.cs | 2 +- .../ImageTransformation/ImageUrlBuilder.cs | 2 +- .../Kentico.Kontent.Delivery.Urls.csproj | 0 .../QueryParameters/DepthParameter.cs | 0 .../QueryParameters/ElementsParameter.cs | 0 .../QueryParameters/Filters/AllFilter.cs | 0 .../QueryParameters/Filters/AnyFilter.cs | 0 .../QueryParameters/Filters/ContainsFilter.cs | 0 .../QueryParameters/Filters/EmptyFilter.cs | 0 .../QueryParameters/Filters/EqualsFilter.cs | 0 .../QueryParameters/Filters/Filter.cs | 0 .../QueryParameters/Filters/GreaterThanFilter.cs | 0 .../QueryParameters/Filters/GreaterThanOrEqualFilter.cs | 0 .../QueryParameters/Filters/InFilter.cs | 0 .../QueryParameters/Filters/LessThanFilter.cs | 0 .../QueryParameters/Filters/LessThanOrEqualFilter.cs | 0 .../QueryParameters/Filters/NotEmptyFilter.cs | 0 .../QueryParameters/Filters/NotEqualsFilter.cs | 0 .../QueryParameters/Filters/NotInFilter.cs | 0 .../QueryParameters/Filters/RangeFilter.cs | 0 .../QueryParameters/Filters/SystemTypeEqualsFilter.cs | 0 .../QueryParameters/IncludeTotalCountParameter.cs | 0 .../QueryParameters/LanguageParameter.cs | 0 .../QueryParameters/LimitParameter.cs | 0 .../QueryParameters/OrderParameter.cs | 0 .../QueryParameters/SkipParameter.cs | 0 .../QueryParameters/SortOrder.cs | 0 Kentico.Kontent.Delivery.sln | 4 ++-- Kentico.Kontent.Delivery/DeliveryClient.cs | 2 +- Kentico.Kontent.Delivery/Kentico.Kontent.Delivery.csproj | 2 +- 35 files changed, 12 insertions(+), 12 deletions(-) rename {Kentico.Kontent.ImageTransformation.Tests => Kentico.Kontent.Delivery.Urls.Tests}/ImageUrlBuilderTests.cs (98%) rename Kentico.Kontent.ImageTransformation.Tests/Kentico.Kontent.Urls.Tests.csproj => Kentico.Kontent.Delivery.Urls.Tests/Kentico.Kontent.Delivery.Urls.Tests.csproj (91%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/DeliveryEndpointUrlBuilder.cs (100%) rename {Kentico.Kontent.ImageTransformation => Kentico.Kontent.Delivery.Urls}/ImageTransformation/ImageCompression.cs (86%) rename {Kentico.Kontent.ImageTransformation => Kentico.Kontent.Delivery.Urls}/ImageTransformation/ImageFitMode.cs (90%) rename {Kentico.Kontent.ImageTransformation => Kentico.Kontent.Delivery.Urls}/ImageTransformation/ImageFormat.cs (91%) rename {Kentico.Kontent.ImageTransformation => Kentico.Kontent.Delivery.Urls}/ImageTransformation/ImageUrlBuilder.cs (99%) rename Kentico.Kontent.ImageTransformation/Kentico.Kontent.Urls.csproj => Kentico.Kontent.Delivery.Urls/Kentico.Kontent.Delivery.Urls.csproj (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/DepthParameter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/ElementsParameter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/AllFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/AnyFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/ContainsFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/EmptyFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/EqualsFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/Filter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/GreaterThanFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/GreaterThanOrEqualFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/InFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/LessThanFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/LessThanOrEqualFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/NotEmptyFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/NotEqualsFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/NotInFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/RangeFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/Filters/SystemTypeEqualsFilter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/IncludeTotalCountParameter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/LanguageParameter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/LimitParameter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/OrderParameter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/SkipParameter.cs (100%) rename {Kentico.Kontent.ImageTransformation/Delivery => Kentico.Kontent.Delivery.Urls}/QueryParameters/SortOrder.cs (100%) diff --git a/Kentico.Kontent.ImageTransformation.Tests/ImageUrlBuilderTests.cs b/Kentico.Kontent.Delivery.Urls.Tests/ImageUrlBuilderTests.cs similarity index 98% rename from Kentico.Kontent.ImageTransformation.Tests/ImageUrlBuilderTests.cs rename to Kentico.Kontent.Delivery.Urls.Tests/ImageUrlBuilderTests.cs index db8344ac..5820bf58 100644 --- a/Kentico.Kontent.ImageTransformation.Tests/ImageUrlBuilderTests.cs +++ b/Kentico.Kontent.Delivery.Urls.Tests/ImageUrlBuilderTests.cs @@ -1,9 +1,9 @@ -using Kentico.Kontent.ImageTransformation; -using System; +using System; using System.Collections.Generic; +using Kentico.Kontent.Delivery.Urls.ImageTransformation; using Xunit; -namespace Kentico.Kontent.Urls.Tests +namespace Kentico.Kontent.Delivery.Urls.Tests { public class ImageUrlBuilderTests { diff --git a/Kentico.Kontent.ImageTransformation.Tests/Kentico.Kontent.Urls.Tests.csproj b/Kentico.Kontent.Delivery.Urls.Tests/Kentico.Kontent.Delivery.Urls.Tests.csproj similarity index 91% rename from Kentico.Kontent.ImageTransformation.Tests/Kentico.Kontent.Urls.Tests.csproj rename to Kentico.Kontent.Delivery.Urls.Tests/Kentico.Kontent.Delivery.Urls.Tests.csproj index bc4484fc..7fcf06ba 100644 --- a/Kentico.Kontent.ImageTransformation.Tests/Kentico.Kontent.Urls.Tests.csproj +++ b/Kentico.Kontent.Delivery.Urls.Tests/Kentico.Kontent.Delivery.Urls.Tests.csproj @@ -23,7 +23,7 @@ - + diff --git a/Kentico.Kontent.ImageTransformation/Delivery/DeliveryEndpointUrlBuilder.cs b/Kentico.Kontent.Delivery.Urls/DeliveryEndpointUrlBuilder.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/DeliveryEndpointUrlBuilder.cs rename to Kentico.Kontent.Delivery.Urls/DeliveryEndpointUrlBuilder.cs diff --git a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageCompression.cs b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageCompression.cs similarity index 86% rename from Kentico.Kontent.ImageTransformation/ImageTransformation/ImageCompression.cs rename to Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageCompression.cs index ad48102d..bdf066e9 100644 --- a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageCompression.cs +++ b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageCompression.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.ImageTransformation +namespace Kentico.Kontent.Delivery.Urls.ImageTransformation { /// /// Types of image compression. diff --git a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageFitMode.cs b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageFitMode.cs similarity index 90% rename from Kentico.Kontent.ImageTransformation/ImageTransformation/ImageFitMode.cs rename to Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageFitMode.cs index bbf72da2..71e1e40f 100644 --- a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageFitMode.cs +++ b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageFitMode.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.ImageTransformation +namespace Kentico.Kontent.Delivery.Urls.ImageTransformation { /// /// Specifies the possible modes for fit transformation. diff --git a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageFormat.cs b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageFormat.cs similarity index 91% rename from Kentico.Kontent.ImageTransformation/ImageTransformation/ImageFormat.cs rename to Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageFormat.cs index 5681aa0b..8fcc7753 100644 --- a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageFormat.cs +++ b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageFormat.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.ImageTransformation +namespace Kentico.Kontent.Delivery.Urls.ImageTransformation { /// /// Supported image formats. diff --git a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageUrlBuilder.cs b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageUrlBuilder.cs similarity index 99% rename from Kentico.Kontent.ImageTransformation/ImageTransformation/ImageUrlBuilder.cs rename to Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageUrlBuilder.cs index db83dfed..a64c1a9c 100644 --- a/Kentico.Kontent.ImageTransformation/ImageTransformation/ImageUrlBuilder.cs +++ b/Kentico.Kontent.Delivery.Urls/ImageTransformation/ImageUrlBuilder.cs @@ -4,7 +4,7 @@ using System.Linq; using Microsoft.Extensions.Primitives; -namespace Kentico.Kontent.ImageTransformation +namespace Kentico.Kontent.Delivery.Urls.ImageTransformation { /// /// Provides a builder for Image Transformations for Kontent Delivery API. diff --git a/Kentico.Kontent.ImageTransformation/Kentico.Kontent.Urls.csproj b/Kentico.Kontent.Delivery.Urls/Kentico.Kontent.Delivery.Urls.csproj similarity index 100% rename from Kentico.Kontent.ImageTransformation/Kentico.Kontent.Urls.csproj rename to Kentico.Kontent.Delivery.Urls/Kentico.Kontent.Delivery.Urls.csproj diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/DepthParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/DepthParameter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/DepthParameter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/DepthParameter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/ElementsParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/ElementsParameter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/ElementsParameter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/ElementsParameter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/AllFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/AllFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/AllFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/AllFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/AnyFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/AnyFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/AnyFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/AnyFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/ContainsFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/ContainsFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/ContainsFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/ContainsFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/EmptyFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/EmptyFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/EmptyFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/EmptyFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/EqualsFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/EqualsFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/EqualsFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/EqualsFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/Filter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/Filter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/Filter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/Filter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/GreaterThanFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/GreaterThanFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/GreaterThanFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/GreaterThanFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/GreaterThanOrEqualFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/GreaterThanOrEqualFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/GreaterThanOrEqualFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/GreaterThanOrEqualFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/InFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/InFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/InFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/InFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/LessThanFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/LessThanFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/LessThanFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/LessThanFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/LessThanOrEqualFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/LessThanOrEqualFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/LessThanOrEqualFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/LessThanOrEqualFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/NotEmptyFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/NotEmptyFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/NotEmptyFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/NotEmptyFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/NotEqualsFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/NotEqualsFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/NotEqualsFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/NotEqualsFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/NotInFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/NotInFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/NotInFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/NotInFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/RangeFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/RangeFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/RangeFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/RangeFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/SystemTypeEqualsFilter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/SystemTypeEqualsFilter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/Filters/SystemTypeEqualsFilter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/Filters/SystemTypeEqualsFilter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/IncludeTotalCountParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/IncludeTotalCountParameter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/IncludeTotalCountParameter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/IncludeTotalCountParameter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/LanguageParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/LanguageParameter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/LanguageParameter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/LanguageParameter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/LimitParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/LimitParameter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/LimitParameter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/LimitParameter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/OrderParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/OrderParameter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/OrderParameter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/OrderParameter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/SkipParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/SkipParameter.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/SkipParameter.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/SkipParameter.cs diff --git a/Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/SortOrder.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/SortOrder.cs similarity index 100% rename from Kentico.Kontent.ImageTransformation/Delivery/QueryParameters/SortOrder.cs rename to Kentico.Kontent.Delivery.Urls/QueryParameters/SortOrder.cs diff --git a/Kentico.Kontent.Delivery.sln b/Kentico.Kontent.Delivery.sln index b24dd560..c0530e60 100644 --- a/Kentico.Kontent.Delivery.sln +++ b/Kentico.Kontent.Delivery.sln @@ -22,9 +22,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Directory.Build.props = Directory.Build.props EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kentico.Kontent.Urls", "Kentico.Kontent.ImageTransformation\Kentico.Kontent.Urls.csproj", "{F1C64D17-1C3E-4F35-9038-5D16C18DDC08}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kentico.Kontent.Delivery.Urls", "Kentico.Kontent.Delivery.Urls\Kentico.Kontent.Delivery.Urls.csproj", "{F1C64D17-1C3E-4F35-9038-5D16C18DDC08}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kentico.Kontent.Urls.Tests", "Kentico.Kontent.ImageTransformation.Tests\Kentico.Kontent.Urls.Tests.csproj", "{8942D9E3-A966-406C-AA19-2B85286744C9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kentico.Kontent.Delivery.Urls.Tests", "Kentico.Kontent.Delivery.Urls.Tests\Kentico.Kontent.Delivery.Urls.Tests.csproj", "{8942D9E3-A966-406C-AA19-2B85286744C9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kentico.Kontent.Delivery.Benchmarks", "Kentico.Kontent.Delivery.Benchmarks\Kentico.Kontent.Delivery.Benchmarks.csproj", "{FAA8F5E9-A262-4F7E-AD38-E72B8A5137F6}" EndProject diff --git a/Kentico.Kontent.Delivery/DeliveryClient.cs b/Kentico.Kontent.Delivery/DeliveryClient.cs index a78b658d..2a528a85 100644 --- a/Kentico.Kontent.Delivery/DeliveryClient.cs +++ b/Kentico.Kontent.Delivery/DeliveryClient.cs @@ -334,7 +334,7 @@ private async Task GetResponseContentAsync(HttpResponseMessage http error = Serializer.Deserialize(jsonReader); } - if(error != null) + if (error != null) { return new ApiResponse(httpResponseMessage.Content, false, null, null, error); } diff --git a/Kentico.Kontent.Delivery/Kentico.Kontent.Delivery.csproj b/Kentico.Kontent.Delivery/Kentico.Kontent.Delivery.csproj index 90b64977..1af9a24c 100644 --- a/Kentico.Kontent.Delivery/Kentico.Kontent.Delivery.csproj +++ b/Kentico.Kontent.Delivery/Kentico.Kontent.Delivery.csproj @@ -38,7 +38,7 @@ - + From c5ea2044cb84e423ca331832030089a1cde21542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Al=C4=8Der?= Date: Fri, 12 Nov 2021 12:29:40 +0100 Subject: [PATCH 2/2] 284 adjusted namespaces to be like folder structure (#299) --- .../Configuration/DefaultRetryPolicyOptions.cs | 3 ++- .../Configuration/DeliveryOptions.cs | 2 +- .../ContentItems/ContentLinks/IContentLink.cs | 2 +- .../ContentLinks/IContentLinkUrlResolver.cs | 2 +- .../ContentItems/Elements/IContentElementValue.cs | 2 +- .../ContentItems/Elements/IRichTextElementValue.cs | 4 +++- .../ContentItems/Elements/ITaxonomyElementValue.cs | 3 ++- .../ContentItems/IAsset.cs | 2 +- .../ContentItems/IContentItemSystemAttributes.cs | 3 ++- .../ContentItems/IDeliveryItemListingResponse.cs | 3 ++- .../ContentItems/IDeliveryItemResponse.cs | 4 ++-- .../ContentItems/IDeliveryItemsFeed.cs | 2 +- .../ContentItems/IDeliveryItemsFeedResponse.cs | 3 ++- .../ContentItems/IIPropertyValueConverter.cs | 3 ++- .../ContentItems/IImage.cs | 2 +- .../ContentItems/IModelProvider.cs | 2 +- .../ContentItems/IPropertyMapper.cs | 2 +- .../ContentItems/ITypeProvider.cs | 2 +- .../InlineContentItems/IInlineContentItemsProcessor.cs | 2 +- .../InlineContentItems/IInlineContentItemsResolver.cs | 2 +- .../ITypelessInlineContentItemsResolver.cs | 2 +- .../ContentItems/ResolvingContext.cs | 3 ++- .../ContentItems/RichText/Blocks/IHtmlContent.cs | 2 +- .../ContentItems/RichText/Blocks/IInlineContentItem.cs | 2 +- .../ContentItems/RichText/Blocks/IInlineImage.cs | 2 +- .../ContentItems/RichText/Blocks/IRichTextBlock.cs | 2 +- .../ContentItems/RichText/IRichTextContent.cs | 3 ++- .../ContentTypes/Element/IContentElement.cs | 2 +- .../ContentTypes/Element/IMultipleChoiceElement.cs | 3 ++- .../ContentTypes/Element/ITaxonomyElement.cs | 2 +- .../ContentTypes/IContentType.cs | 3 ++- .../ContentTypes/IContentTypeSystemAttributes.cs | 4 +++- .../ContentTypes/IDeliveryElementResponse.cs | 5 ++++- .../ContentTypes/IDeliveryTypeListingResponse.cs | 3 ++- .../ContentTypes/IDeliveryTypeResponse.cs | 4 +++- .../DeliveryClientExtensions.cs | 4 ++++ .../Extensions/DeliveryOptionsExtensions.cs | 4 +++- .../IDeliveryClient.cs | 4 ++++ .../Languages/IDeliveryLanguageListingResponse.cs | 3 ++- .../Languages/ILanguage.cs | 2 +- .../Languages/ILanguageSystemAttributes.cs | 4 +++- .../RetryPolicy/IRetryPolicy.cs | 2 +- .../RetryPolicy/IRetryPolicyProvider.cs | 2 +- .../SharedModels/IApiResponse.cs | 2 +- .../SharedModels/IError.cs | 2 +- .../SharedModels/IMultipleChoiceOption.cs | 2 +- .../SharedModels/IPageable.cs | 2 +- .../SharedModels/IPagination.cs | 2 +- .../SharedModels/IResponse.cs | 2 +- .../SharedModels/ISystemAttributes.cs | 2 +- .../SharedModels/ISystemBaseAttributes.cs | 2 +- .../SharedModels/ITaxonomyTerm.cs | 2 +- .../TaxonomyGroups/IDeliveryTaxonomyListingResponse.cs | 3 ++- .../TaxonomyGroups/IDeliveryTaxonomyResponse.cs | 4 +++- .../TaxonomyGroups/ITaxonomyGroup.cs | 2 +- .../TaxonomyGroups/ITaxonomyGroupSystemAttributes.cs | 4 +++- .../TaxonomyGroups/ITaxonomyTermDetails.cs | 2 +- .../ContentTypes/AboutUs.Generated.cs | 2 ++ .../ContentTypes/Accessory.Generated.cs | 2 ++ .../ContentTypes/Article.Generated.cs | 2 ++ .../ContentTypes/Brewer.Generated.cs | 2 ++ .../ContentTypes/Cafe.Generated.cs | 2 ++ .../ContentTypes/Coffee.Generated.cs | 2 ++ .../ContentTypes/CustomTypeProvider.cs | 1 + .../ContentTypes/FactAboutUs.Generated.cs | 2 ++ .../ContentTypes/Grinder.Generated.cs | 2 ++ .../ContentTypes/HeroUnit.Generated.cs | 2 ++ .../ContentTypes/Home.Generated.cs | 2 ++ .../ContentTypes/HostedVideo.Generated.cs | 2 ++ .../ContentTypes/Office.Generated.cs | 2 ++ .../ContentTypes/Tweet.Generated.cs | 2 ++ .../DeliveryClientBenchmark.cs | 1 + .../ContentTypes/AboutUs.Generated.cs | 2 ++ .../ContentTypes/Accessory.Generated.cs | 2 ++ .../ContentTypes/Article.Generated.cs | 3 +++ .../ContentTypes/Brewer.Generated.cs | 2 ++ .../ContentTypes/Cafe.Generated.cs | 2 ++ .../ContentTypes/Coffee.Generated.cs | 2 ++ .../ContentTypes/CustomTypeProvider.cs | 1 + .../ContentTypes/FactAboutUs.Generated.cs | 2 ++ .../ContentTypes/Grinder.Generated.cs | 2 ++ .../ContentTypes/HeroUnit.Generated.cs | 2 ++ .../ContentTypes/Home.Generated.cs | 2 ++ .../ContentTypes/HostedVideo.Generated.cs | 2 ++ .../ContentTypes/Office.Generated.cs | 2 ++ .../ContentTypes/Tweet.Generated.cs | 2 ++ Kentico.Kontent.Delivery.Caching.Tests/Scenario.cs | 1 + .../ScenarioBuilder.cs | 1 + .../ServiceCollectionExtensionsTests.cs | 1 + Kentico.Kontent.Delivery.Caching.Tests/TestItem.cs | 1 + Kentico.Kontent.Delivery.Caching/CacheHelpers.cs | 5 +++++ .../DeliveryClientCache.cs | 4 ++++ .../DistributedCacheManager.cs | 1 + Kentico.Kontent.Delivery.Caching/MemoryCacheManager.cs | 1 + .../DeliveryClientFactoryTests.cs | 1 + ...erviceCollectionExtensionsTests.NamedCacheClient.cs | 2 ++ .../ServiceCollectionExtensionsTests.NamedClient.cs | 3 +++ .../Extensions/ServiceCollectionExtensions.cs | 10 ++++++---- .../NamedDeliveryClientFactory.cs | 3 +++ .../NamedServiceProviders/AutofacServiceProvider.cs | 2 +- .../DeliveryObservableProxyTests.cs | 5 +++++ .../Models/ContentTypes/AboutUs.cs | 1 + .../Models/ContentTypes/Accessory.cs | 2 ++ .../Models/ContentTypes/Article.cs | 2 ++ .../Models/ContentTypes/Brewer.cs | 2 ++ .../Models/ContentTypes/Cafe.cs | 1 + .../Models/ContentTypes/Coffee.cs | 2 ++ .../Models/ContentTypes/CustomTypeProvider.cs | 1 + .../Models/ContentTypes/FactAboutUs.cs | 1 + .../Models/ContentTypes/Grinder.cs | 2 ++ .../Models/ContentTypes/HeroUnit.cs | 1 + .../Models/ContentTypes/Home.cs | 1 + .../Models/ContentTypes/HostedVideo.cs | 2 ++ .../Models/ContentTypes/Office.cs | 1 + .../Models/ContentTypes/Tweet.cs | 2 ++ Kentico.Kontent.Delivery.Rx/DeliveryObservableProxy.cs | 4 ++++ .../Configuration/DeliveryOptionsBuilderTests.cs | 1 + .../Configuration/DeliveryOptionsValidatorTests.cs | 1 + .../DeliveryClient/DeliveryClientBuilderTests.cs | 4 ++++ .../ContentItemsInRichTextProcessorTests.cs | 1 + .../ContentLinkResolverTests.cs | 2 ++ Kentico.Kontent.Delivery.Tests/DeliveryClientTests.cs | 5 +++++ .../DeliveryOptionsExtensionsTests.cs | 1 + .../DependencyInjectionFrameworks/AutoFacTests.cs | 1 + .../CastleWindsorTests.cs | 1 + .../DeliveryClientAssertionExtensions.cs | 2 ++ .../Helpers/DependencyInjectionFrameworksHelper.cs | 1 + .../Helpers/FakeModelProvider.cs | 1 + .../Helpers/FakeTweetResolver.cs | 1 + .../SimpleInjectorTests.cs | 1 + .../DependencyInjectionFrameworks/UnityTests.cs | 1 + .../Extensions/ServiceCollectionsExtensionsTests.cs | 5 +++++ .../Factories/DeliveryClientFactory.cs | 3 +++ .../Factories/DeliveryClientFactoryTests.cs | 1 + .../Factories/DeliveryOptionsFactory.cs | 1 + .../Factories/InlineContentItemsProcessorFactory.cs | 1 + .../Factories/InlineContentItemsResolverFactory.cs | 1 + Kentico.Kontent.Delivery.Tests/FakeHttpClientTests.cs | 3 +++ Kentico.Kontent.Delivery.Tests/ModelProviderTests.cs | 3 +++ .../Models/ArticlePartialItemModel.cs | 2 ++ .../Models/CompleteContentItemModel.cs | 2 ++ .../Models/ContentItemModelWithAttributes.cs | 2 ++ .../Models/ContentTypes/AboutUs.Generated.cs | 2 ++ .../Models/ContentTypes/Accessory.Generated.cs | 2 ++ .../Models/ContentTypes/Article.Generated.cs | 2 ++ .../Models/ContentTypes/Article.cs | 1 + .../Models/ContentTypes/ArticleWithImplementedTypes.cs | 3 +++ .../Models/ContentTypes/Brewer.Generated.cs | 2 ++ .../Models/ContentTypes/Cafe.Generated.cs | 2 ++ .../Models/ContentTypes/Coffee.Generated.cs | 2 ++ .../Models/ContentTypes/CustomTypeProvider.cs | 1 + .../Models/ContentTypes/FactAboutUs.Generated.cs | 2 ++ .../Models/ContentTypes/Grinder.Generated.cs | 2 ++ .../Models/ContentTypes/HeroUnit.Generated.cs | 2 ++ .../Models/ContentTypes/Home.Generated.cs | 2 ++ .../Models/ContentTypes/HostedVideo.Generated.cs | 2 ++ .../Models/ContentTypes/Office.Generated.cs | 2 ++ .../Models/ContentTypes/SimpleRichText.cs | 1 + .../Models/ContentTypes/Tweet.Generated.cs | 2 ++ Kentico.Kontent.Delivery.Tests/Models/Homepage.cs | 2 ++ .../QueryParameters/ContentTypeExtractorTests.cs | 2 ++ .../QueryParameters/IncludeTotalCountTests.cs | 1 + .../RetryPolicy/DefaultRetryPolicyProviderTests.cs | 1 + .../RetryPolicy/DefaultRetryPolicyTests.cs | 1 + Kentico.Kontent.Delivery.Tests/ValueConverterTests.cs | 6 ++++++ .../DeliveryEndpointUrlBuilder.cs | 1 + .../QueryParameters/IncludeTotalCountParameter.cs | 1 + .../Builders/DeliveryClient/DeliveryClientBuilder.cs | 1 + .../DeliveryClientBuilderImplementation.cs | 5 +++++ .../Builders/DeliveryClient/IDeliveryClientBuilder.cs | 5 +++++ .../Configuration/DeliveryOptionsBuilder.cs | 3 ++- .../Configuration/DeliveryOptionsMonitor.cs | 1 + .../Configuration/DeliveryOptionsValidator.cs | 1 + .../Configuration/IDeliveryOptionsBuilder.cs | 1 + Kentico.Kontent.Delivery/ContentItems/Asset.cs | 1 + .../ContentItems/ContentItemSystemAttributes.cs | 1 + .../ContentItems/ContentLinks/ContentLink.cs | 1 + .../ContentItems/ContentLinks/ContentLinkResolver.cs | 1 + .../ContentLinks/ContentLinkUrlResolver.cs | 1 + .../ContentItems/DeliveryItemListingResponse.cs | 2 ++ .../ContentItems/DeliveryItemResponse.cs | 1 + .../ContentItems/DeliveryItemsFeed.cs | 1 + .../ContentItems/DeliveryItemsFeedResponse.cs | 1 + .../ContentItems/Elements/ContentElementValue.cs | 1 + .../ContentItems/Elements/RichTextElementValue.cs | 3 +++ .../ContentItems/Elements/TaxonomyElementValue.cs | 2 ++ .../InlineContentItems/InlineContentItemsProcessor.cs | 2 ++ .../ReplaceWithWarningAboutRegistrationResolver.cs | 1 + .../ReplaceWithWarningAboutUnknownItemResolver.cs | 1 + .../ReplaceWithWarningAboutUnretrievedItemResolver.cs | 1 + .../TypelessInlineContentItemsResolver.cs | 1 + Kentico.Kontent.Delivery/ContentItems/ModelProvider.cs | 6 ++++++ .../ContentItems/PropertyMapper.cs | 1 + .../ContentItems/RichText/Blocks/HtmlContent.cs | 1 + .../ContentItems/RichText/Blocks/InlineContentItem.cs | 1 + .../ContentItems/RichText/Blocks/InlineImage.cs | 1 + .../ContentItems/RichText/RichTextContent.cs | 2 ++ .../ContentItems/RichTextContentConverter.cs | 3 +++ Kentico.Kontent.Delivery/ContentItems/TypeProvider.cs | 1 + Kentico.Kontent.Delivery/ContentTypes/ContentType.cs | 2 ++ .../ContentTypes/ContentTypeSystemAttributes.cs | 1 + .../ContentTypes/DeliveryElementResponse.cs | 2 ++ .../ContentTypes/DeliveryTypeListingResponse.cs | 2 ++ .../ContentTypes/DeliveryTypeResponse.cs | 1 + .../ContentTypes/Element/ContentElement.cs | 1 + .../ContentTypes/Element/ContentElementConverter.cs | 1 + .../ContentTypes/Element/MultipleChoiceElement.cs | 2 ++ .../ContentTypes/Element/TaxonomyElement.cs | 1 + Kentico.Kontent.Delivery/DeliveryClient.cs | 7 +++++++ Kentico.Kontent.Delivery/DeliveryClientFactory.cs | 3 +++ Kentico.Kontent.Delivery/DeliveryContractResolver.cs | 1 + .../Extensions/ServiceCollectionExtensions.cs | 5 +++++ .../Helpers/DeliveryOptionsHelpers.cs | 1 + .../Languages/DeliveryLanguageListingResponse.cs | 2 ++ Kentico.Kontent.Delivery/Languages/Language.cs | 1 + .../Languages/LanguageSystemAttributes.cs | 1 + .../RetryPolicy/DefaultRetryPolicy.cs | 2 ++ .../RetryPolicy/DefaultRetryPolicyProvider.cs | 2 ++ .../SharedModels/AbstractResponse.cs | 1 + Kentico.Kontent.Delivery/SharedModels/ApiResponse.cs | 1 + Kentico.Kontent.Delivery/SharedModels/Error.cs | 1 + .../SharedModels/MultipleChoiceOption.cs | 1 + Kentico.Kontent.Delivery/SharedModels/Pagination.cs | 1 + Kentico.Kontent.Delivery/SharedModels/TaxonomyTerm.cs | 1 + .../TaxonomyGroups/DeliveryTaxonomyListingResponse.cs | 2 ++ .../TaxonomyGroups/DeliveryTaxonomyResponse.cs | 1 + .../TaxonomyGroups/TaxonomyGroup.cs | 2 ++ .../TaxonomyGroups/TaxonomyGroupSystemAttributes.cs | 1 + .../TaxonomyGroups/TaxonomyTermDetails.cs | 1 + 229 files changed, 411 insertions(+), 62 deletions(-) diff --git a/Kentico.Kontent.Delivery.Abstractions/Configuration/DefaultRetryPolicyOptions.cs b/Kentico.Kontent.Delivery.Abstractions/Configuration/DefaultRetryPolicyOptions.cs index ddd386d0..0cb176b6 100644 --- a/Kentico.Kontent.Delivery.Abstractions/Configuration/DefaultRetryPolicyOptions.cs +++ b/Kentico.Kontent.Delivery.Abstractions/Configuration/DefaultRetryPolicyOptions.cs @@ -1,6 +1,7 @@ using System; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.Configuration { /// /// Represents configuration of the that performs retries using a randomized exponential back off scheme to determine the interval between retries. diff --git a/Kentico.Kontent.Delivery.Abstractions/Configuration/DeliveryOptions.cs b/Kentico.Kontent.Delivery.Abstractions/Configuration/DeliveryOptions.cs index 099d7a68..98417d63 100644 --- a/Kentico.Kontent.Delivery.Abstractions/Configuration/DeliveryOptions.cs +++ b/Kentico.Kontent.Delivery.Abstractions/Configuration/DeliveryOptions.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.Configuration { /// /// Represents configuration of the . diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLink.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLink.cs index d55aebba..79d66591 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLink.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLink.cs @@ -1,6 +1,6 @@ using System; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks { /// /// Represents a link to a content item in a Rich text element. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLinkUrlResolver.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLinkUrlResolver.cs index 9fc6cc7d..f67f2aff 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLinkUrlResolver.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ContentLinks/IContentLinkUrlResolver.cs @@ -1,6 +1,6 @@ using System.Threading.Tasks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks { /// /// Defines the contract to resolve content links in Rich text element values. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IContentElementValue.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IContentElementValue.cs index 63753b02..0f953209 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IContentElementValue.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IContentElementValue.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements { /// /// Represents a content element. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IRichTextElementValue.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IRichTextElementValue.cs index 56cd02b5..cbaca3c1 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IRichTextElementValue.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/IRichTextElementValue.cs @@ -1,7 +1,9 @@ using System; using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements { /// /// An element representing a rich-text value. In addition to formatted text, diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/ITaxonomyElementValue.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/ITaxonomyElementValue.cs index c2be3d92..94b5403c 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/ITaxonomyElementValue.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/Elements/ITaxonomyElementValue.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements { /// /// An object representing a taxonomy element value. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IAsset.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IAsset.cs index b43b49ac..3d43a3c8 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IAsset.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IAsset.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Represents a digital asset, such as a document or image. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IContentItemSystemAttributes.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IContentItemSystemAttributes.cs index 058e5f0a..54fbacf4 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IContentItemSystemAttributes.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IContentItemSystemAttributes.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Represents system attributes of a content item. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemListingResponse.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemListingResponse.cs index 86344f58..cf2e5508 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemListingResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemListingResponse.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Represents a response from Kontent Delivery API that contains a list of content items. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemResponse.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemResponse.cs index 32e250ea..fb97d850 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemResponse.cs @@ -1,6 +1,6 @@ -using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Represents a response from Kontent Delivery API that contains a content item. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeed.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeed.cs index 52277581..581d51da 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeed.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeed.cs @@ -1,6 +1,6 @@ using System.Threading.Tasks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Represents a feed that can be used to retrieve strongly typed content items from Kontent Delivery API in smaller batches. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeedResponse.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeedResponse.cs index 0257a2e0..2ea8e207 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeedResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IDeliveryItemsFeedResponse.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Represents a partial response from Kontent Delivery API enumeration methods that contains a list of content items. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IIPropertyValueConverter.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IIPropertyValueConverter.cs index 7d307bf5..0e446444 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IIPropertyValueConverter.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IIPropertyValueConverter.cs @@ -1,7 +1,8 @@ using System.Reflection; using System.Threading.Tasks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Provides value conversion for the given property diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IImage.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IImage.cs index 25a81fdb..e220c7f9 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IImage.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IImage.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// A class that represents a generic image asset. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IModelProvider.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IModelProvider.cs index fae55ec9..66f34ecf 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IModelProvider.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IModelProvider.cs @@ -1,7 +1,7 @@ using System.Collections; using System.Threading.Tasks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Defines the contract for mapping content items to models. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IPropertyMapper.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IPropertyMapper.cs index f82ac0ce..8231acc7 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/IPropertyMapper.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/IPropertyMapper.cs @@ -1,6 +1,6 @@ using System.Reflection; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Defines the contract for mapping Kontent content item fields to model properties. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ITypeProvider.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ITypeProvider.cs index 23d23ea1..dddde388 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ITypeProvider.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ITypeProvider.cs @@ -1,6 +1,6 @@ using System; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Defines the contract for mapping Kontent content types to CLR types. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsProcessor.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsProcessor.cs index 17ee1387..670d9f7d 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsProcessor.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsProcessor.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems { /// /// Interface implemented for processing inline content items in HTML diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsResolver.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsResolver.cs index 22aa1b86..9771f0c1 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsResolver.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/IInlineContentItemsResolver.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems { /// /// An interface, implemented to be registered as resolver for specific content type of inline content item diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/ITypelessInlineContentItemsResolver.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/ITypelessInlineContentItemsResolver.cs index 09a608a1..a31632fa 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/ITypelessInlineContentItemsResolver.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/InlineContentItems/ITypelessInlineContentItemsResolver.cs @@ -1,6 +1,6 @@ using System; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems { /// /// An interface, implemented to be registered in an collection passed to . diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ResolvingContext.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ResolvingContext.cs index 7c996450..126f0301 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/ResolvingContext.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/ResolvingContext.cs @@ -1,7 +1,8 @@ using System; using System.Threading.Tasks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems { /// /// Context of the current resolving process diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IHtmlContent.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IHtmlContent.cs index d4751325..debd573b 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IHtmlContent.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IHtmlContent.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks { /// /// Represents HTML content rich text block diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineContentItem.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineContentItem.cs index 8859cbbc..b99a0dd9 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineContentItem.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineContentItem.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks { /// /// Represents inline content item block within rich text diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineImage.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineImage.cs index 94525c77..ae62ee3c 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineImage.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IInlineImage.cs @@ -1,6 +1,6 @@ using System; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks { /// /// Represents inline image block within rich text diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IRichTextBlock.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IRichTextBlock.cs index 8842dc3a..d56c0fe3 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IRichTextBlock.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/Blocks/IRichTextBlock.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks { /// /// Base interface for rich text content blocks diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/IRichTextContent.cs b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/IRichTextContent.cs index b0f35a41..9c6ecf44 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/IRichTextContent.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentItems/RichText/IRichTextContent.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText { /// /// Represents rich text content in a form of structured data diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IContentElement.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IContentElement.cs index 5bbe6868..92f719fe 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IContentElement.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IContentElement.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element { /// /// Represents a content element. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IMultipleChoiceElement.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IMultipleChoiceElement.cs index cf8ad3f4..825b2560 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IMultipleChoiceElement.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/IMultipleChoiceElement.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element { interface IMultipleChoiceElement : IContentElement { diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/ITaxonomyElement.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/ITaxonomyElement.cs index 8a48ae56..3301f782 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/ITaxonomyElement.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/Element/ITaxonomyElement.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element { interface ITaxonomyElement : IContentElement { diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentType.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentType.cs index 0aa0853a..319f9936 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentType.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentType.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes { /// /// Represents a content type. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentTypeSystemAttributes.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentTypeSystemAttributes.cs index c8c2682b..e110e9a2 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentTypeSystemAttributes.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IContentTypeSystemAttributes.cs @@ -1,4 +1,6 @@ -namespace Kentico.Kontent.Delivery.Abstractions +using Kentico.Kontent.Delivery.Abstractions.SharedModels; + +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes { /// /// Represents system attributes of a content type. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryElementResponse.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryElementResponse.cs index 57bf34ef..5ab0e312 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryElementResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryElementResponse.cs @@ -1,4 +1,7 @@ -namespace Kentico.Kontent.Delivery.Abstractions +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; + +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes { /// /// Represents a response from Kontent Delivery API that contains a content type element. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeListingResponse.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeListingResponse.cs index d0490417..fd4e8beb 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeListingResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeListingResponse.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes { /// /// Represents a response from Kontent Delivery API that contains a list of content types. diff --git a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeResponse.cs b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeResponse.cs index 5a00cb6a..c0af4be4 100644 --- a/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/ContentTypes/IDeliveryTypeResponse.cs @@ -1,4 +1,6 @@ -namespace Kentico.Kontent.Delivery.Abstractions +using Kentico.Kontent.Delivery.Abstractions.SharedModels; + +namespace Kentico.Kontent.Delivery.Abstractions.ContentTypes { /// /// Represents a response from Kontent Delivery API that contains a content type. diff --git a/Kentico.Kontent.Delivery.Abstractions/DeliveryClientExtensions.cs b/Kentico.Kontent.Delivery.Abstractions/DeliveryClientExtensions.cs index c4bad953..00a2f73d 100644 --- a/Kentico.Kontent.Delivery.Abstractions/DeliveryClientExtensions.cs +++ b/Kentico.Kontent.Delivery.Abstractions/DeliveryClientExtensions.cs @@ -1,4 +1,8 @@ using System.Threading.Tasks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.Languages; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; namespace Kentico.Kontent.Delivery.Abstractions { diff --git a/Kentico.Kontent.Delivery.Abstractions/Extensions/DeliveryOptionsExtensions.cs b/Kentico.Kontent.Delivery.Abstractions/Extensions/DeliveryOptionsExtensions.cs index 623b582f..8551612c 100644 --- a/Kentico.Kontent.Delivery.Abstractions/Extensions/DeliveryOptionsExtensions.cs +++ b/Kentico.Kontent.Delivery.Abstractions/Extensions/DeliveryOptionsExtensions.cs @@ -1,4 +1,6 @@ -namespace Kentico.Kontent.Delivery.Abstractions.Extensions +using Kentico.Kontent.Delivery.Abstractions.Configuration; + +namespace Kentico.Kontent.Delivery.Abstractions.Extensions { /// /// A class which contains extension methods on . diff --git a/Kentico.Kontent.Delivery.Abstractions/IDeliveryClient.cs b/Kentico.Kontent.Delivery.Abstractions/IDeliveryClient.cs index 24cb0cc2..be6c922c 100644 --- a/Kentico.Kontent.Delivery.Abstractions/IDeliveryClient.cs +++ b/Kentico.Kontent.Delivery.Abstractions/IDeliveryClient.cs @@ -1,5 +1,9 @@ using System.Collections.Generic; using System.Threading.Tasks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.Languages; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; namespace Kentico.Kontent.Delivery.Abstractions { diff --git a/Kentico.Kontent.Delivery.Abstractions/Languages/IDeliveryLanguageListingResponse.cs b/Kentico.Kontent.Delivery.Abstractions/Languages/IDeliveryLanguageListingResponse.cs index 858dc6c7..f647d806 100644 --- a/Kentico.Kontent.Delivery.Abstractions/Languages/IDeliveryLanguageListingResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/Languages/IDeliveryLanguageListingResponse.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.Languages { /// /// Represents a response from Kontent Delivery API that contains a list of languages. diff --git a/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguage.cs b/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguage.cs index fdc614fd..37514344 100644 --- a/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguage.cs +++ b/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguage.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.Languages { /// /// Represents a language. diff --git a/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguageSystemAttributes.cs b/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguageSystemAttributes.cs index 0013cb8d..578fb82a 100644 --- a/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguageSystemAttributes.cs +++ b/Kentico.Kontent.Delivery.Abstractions/Languages/ILanguageSystemAttributes.cs @@ -1,4 +1,6 @@ -namespace Kentico.Kontent.Delivery.Abstractions +using Kentico.Kontent.Delivery.Abstractions.SharedModels; + +namespace Kentico.Kontent.Delivery.Abstractions.Languages { /// /// Represents system attributes of a language. diff --git a/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicy.cs b/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicy.cs index 74a71327..2041213a 100644 --- a/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicy.cs +++ b/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicy.cs @@ -2,7 +2,7 @@ using System.Net.Http; using System.Threading.Tasks; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.RetryPolicy { /// /// Represents a retry policy for HTTP requests. diff --git a/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicyProvider.cs b/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicyProvider.cs index 97da71c0..1e6b8be5 100644 --- a/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicyProvider.cs +++ b/Kentico.Kontent.Delivery.Abstractions/RetryPolicy/IRetryPolicyProvider.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.RetryPolicy { /// /// Provides a retry policy for . diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IApiResponse.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IApiResponse.cs index e6f5377c..b00fd3a9 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IApiResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IApiResponse.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents a successful JSON response from Kontent Delivery API. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IError.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IError.cs index 98f02285..157bc795 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IError.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IError.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents a faulty JSON response from Kontent Delivery API. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IMultipleChoiceOption.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IMultipleChoiceOption.cs index 5affda31..febaa280 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IMultipleChoiceOption.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IMultipleChoiceOption.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents an option of a Multiple choice content element. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPageable.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPageable.cs index dbe1d1a1..4972a65b 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPageable.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPageable.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents a pageable response. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPagination.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPagination.cs index 18ebfbcd..581e2da0 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPagination.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IPagination.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents information about a page. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IResponse.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IResponse.cs index 2ff5beab..4a16cfb9 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/IResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/IResponse.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// A base interface for all response envelopes. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemAttributes.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemAttributes.cs index aee81798..011250b6 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemAttributes.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemAttributes.cs @@ -1,6 +1,6 @@ using System; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents extended system attributes of any object in Kontent. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemBaseAttributes.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemBaseAttributes.cs index 75a365c7..57d01bac 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemBaseAttributes.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/ISystemBaseAttributes.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents system base attributes of any object in Kontent. diff --git a/Kentico.Kontent.Delivery.Abstractions/SharedModels/ITaxonomyTerm.cs b/Kentico.Kontent.Delivery.Abstractions/SharedModels/ITaxonomyTerm.cs index 8a2f94b0..f827602d 100644 --- a/Kentico.Kontent.Delivery.Abstractions/SharedModels/ITaxonomyTerm.cs +++ b/Kentico.Kontent.Delivery.Abstractions/SharedModels/ITaxonomyTerm.cs @@ -1,4 +1,4 @@ -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.SharedModels { /// /// Represents a taxonomy term assigned to a Taxonomy element. diff --git a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyListingResponse.cs b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyListingResponse.cs index ed294a38..1203f7d9 100644 --- a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyListingResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyListingResponse.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups { /// /// Represents a response from Kontent Delivery API that contains a list of taxonomy groups. diff --git a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyResponse.cs b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyResponse.cs index 132304fe..bdf0b054 100644 --- a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyResponse.cs +++ b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/IDeliveryTaxonomyResponse.cs @@ -1,4 +1,6 @@ -namespace Kentico.Kontent.Delivery.Abstractions +using Kentico.Kontent.Delivery.Abstractions.SharedModels; + +namespace Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups { /// /// Represents a response from Kontent Delivery API that contains a taxonomy group. diff --git a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroup.cs b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroup.cs index d94714dc..a47879de 100644 --- a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroup.cs +++ b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroup.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups { /// /// Represents a taxonomy group. diff --git a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroupSystemAttributes.cs b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroupSystemAttributes.cs index 350fc0b5..fb68d20f 100644 --- a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroupSystemAttributes.cs +++ b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyGroupSystemAttributes.cs @@ -1,4 +1,6 @@ -namespace Kentico.Kontent.Delivery.Abstractions +using Kentico.Kontent.Delivery.Abstractions.SharedModels; + +namespace Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups { /// /// Represents system attributes of a taxonomy group diff --git a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyTermDetails.cs b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyTermDetails.cs index 48a5f1e9..ddc328e7 100644 --- a/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyTermDetails.cs +++ b/Kentico.Kontent.Delivery.Abstractions/TaxonomyGroups/ITaxonomyTermDetails.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Kentico.Kontent.Delivery.Abstractions +namespace Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups { /// /// Represents a taxonomy term with child terms. diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/AboutUs.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/AboutUs.Generated.cs index c841f40a..f85a0a05 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/AboutUs.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/AboutUs.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Accessory.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Accessory.Generated.cs index 58a0ab13..41f91871 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Accessory.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Accessory.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Article.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Article.Generated.cs index ea224d65..d0e213b8 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Article.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Article.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Brewer.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Brewer.Generated.cs index 54a500b8..fa94345e 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Brewer.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Brewer.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Cafe.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Cafe.Generated.cs index 25f840a9..0db1d156 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Cafe.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Cafe.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Coffee.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Coffee.Generated.cs index c6c819d2..465ec236 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Coffee.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Coffee.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/CustomTypeProvider.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/CustomTypeProvider.cs index 6a7d218c..84b390e8 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/CustomTypeProvider.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/CustomTypeProvider.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/FactAboutUs.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/FactAboutUs.Generated.cs index 425d0705..8a9fd6f4 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/FactAboutUs.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/FactAboutUs.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Grinder.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Grinder.Generated.cs index a6603f11..1cd3c28a 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Grinder.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Grinder.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HeroUnit.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HeroUnit.Generated.cs index 59dd7fc6..262f99db 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HeroUnit.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HeroUnit.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Home.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Home.Generated.cs index a858b615..8be4a595 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Home.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Home.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HostedVideo.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HostedVideo.Generated.cs index d0c7da6f..47bd13fa 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HostedVideo.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/HostedVideo.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Office.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Office.Generated.cs index 69c6ce5b..598fbfc6 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Office.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Office.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Tweet.Generated.cs b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Tweet.Generated.cs index 0dd48bd6..8a3e89e6 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Tweet.Generated.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/ContentTypes/Tweet.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Benchmarks.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Benchmarks/DeliveryClientBenchmark.cs b/Kentico.Kontent.Delivery.Benchmarks/DeliveryClientBenchmark.cs index 2223e5bc..b2d250a6 100644 --- a/Kentico.Kontent.Delivery.Benchmarks/DeliveryClientBenchmark.cs +++ b/Kentico.Kontent.Delivery.Benchmarks/DeliveryClientBenchmark.cs @@ -7,6 +7,7 @@ using System.Threading.Tasks; using Kentico.Kontent.Delivery.Benchmarks.ContentTypes; using BenchmarkDotNet.Jobs; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Benchmarks { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/AboutUs.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/AboutUs.Generated.cs index 7d5dce4f..e85f184c 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/AboutUs.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/AboutUs.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Accessory.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Accessory.Generated.cs index d54d4fa4..8f0e13c6 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Accessory.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Accessory.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Article.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Article.Generated.cs index 45e98e13..3fa7b6a6 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Article.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Article.Generated.cs @@ -7,6 +7,9 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Brewer.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Brewer.Generated.cs index e106e661..19f66d7c 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Brewer.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Brewer.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Cafe.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Cafe.Generated.cs index d35207fa..f387c3ec 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Cafe.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Cafe.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Coffee.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Coffee.Generated.cs index 91ab7591..24673647 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Coffee.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Coffee.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/CustomTypeProvider.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/CustomTypeProvider.cs index df0d9cb7..85cdb36e 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/CustomTypeProvider.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/CustomTypeProvider.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/FactAboutUs.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/FactAboutUs.Generated.cs index dbcf0a8f..601a16bb 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/FactAboutUs.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/FactAboutUs.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Grinder.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Grinder.Generated.cs index bf8d4b0c..398bf4d5 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Grinder.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Grinder.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HeroUnit.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HeroUnit.Generated.cs index aef4ff29..57e733b0 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HeroUnit.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HeroUnit.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Home.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Home.Generated.cs index f7ca05c1..ec739edd 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Home.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Home.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HostedVideo.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HostedVideo.Generated.cs index 02e3b032..96ab8cd0 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HostedVideo.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/HostedVideo.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Office.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Office.Generated.cs index b7d87332..0b795b6d 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Office.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Office.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Tweet.Generated.cs b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Tweet.Generated.cs index a5917aef..570cd4e6 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Tweet.Generated.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ContentTypes/Tweet.Generated.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Caching.Tests.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Caching.Tests/Scenario.cs b/Kentico.Kontent.Delivery.Caching.Tests/Scenario.cs index d64e9c30..bdadad1e 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/Scenario.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/Scenario.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Net.Http; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.Builders.DeliveryClient; using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Caching.Memory; diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ScenarioBuilder.cs b/Kentico.Kontent.Delivery.Caching.Tests/ScenarioBuilder.cs index 87a85359..205af002 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ScenarioBuilder.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ScenarioBuilder.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Options; diff --git a/Kentico.Kontent.Delivery.Caching.Tests/ServiceCollectionExtensionsTests.cs b/Kentico.Kontent.Delivery.Caching.Tests/ServiceCollectionExtensionsTests.cs index 75652d6a..95c30737 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/ServiceCollectionExtensionsTests.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/ServiceCollectionExtensionsTests.cs @@ -1,6 +1,7 @@ using System; using FluentAssertions; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.Caching.Extensions; using Kentico.Kontent.Delivery.Extensions; using Microsoft.Extensions.DependencyInjection; diff --git a/Kentico.Kontent.Delivery.Caching.Tests/TestItem.cs b/Kentico.Kontent.Delivery.Caching.Tests/TestItem.cs index 46a84e37..97c2de40 100644 --- a/Kentico.Kontent.Delivery.Caching.Tests/TestItem.cs +++ b/Kentico.Kontent.Delivery.Caching.Tests/TestItem.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Caching.Tests { diff --git a/Kentico.Kontent.Delivery.Caching/CacheHelpers.cs b/Kentico.Kontent.Delivery.Caching/CacheHelpers.cs index fb263df3..ae41e2b6 100644 --- a/Kentico.Kontent.Delivery.Caching/CacheHelpers.cs +++ b/Kentico.Kontent.Delivery.Caching/CacheHelpers.cs @@ -2,6 +2,11 @@ using System.Collections.Generic; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.Languages; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; using Newtonsoft.Json.Linq; namespace Kentico.Kontent.Delivery.Caching diff --git a/Kentico.Kontent.Delivery.Caching/DeliveryClientCache.cs b/Kentico.Kontent.Delivery.Caching/DeliveryClientCache.cs index 4f6cba86..11b5d6ec 100644 --- a/Kentico.Kontent.Delivery.Caching/DeliveryClientCache.cs +++ b/Kentico.Kontent.Delivery.Caching/DeliveryClientCache.cs @@ -3,6 +3,10 @@ using System.Linq; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.Languages; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; namespace Kentico.Kontent.Delivery.Caching { diff --git a/Kentico.Kontent.Delivery.Caching/DistributedCacheManager.cs b/Kentico.Kontent.Delivery.Caching/DistributedCacheManager.cs index 17dd3991..499fd0dd 100644 --- a/Kentico.Kontent.Delivery.Caching/DistributedCacheManager.cs +++ b/Kentico.Kontent.Delivery.Caching/DistributedCacheManager.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; using Kentico.Kontent.Delivery.Caching.Extensions; using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Options; diff --git a/Kentico.Kontent.Delivery.Caching/MemoryCacheManager.cs b/Kentico.Kontent.Delivery.Caching/MemoryCacheManager.cs index 58994951..ea72df5f 100644 --- a/Kentico.Kontent.Delivery.Caching/MemoryCacheManager.cs +++ b/Kentico.Kontent.Delivery.Caching/MemoryCacheManager.cs @@ -4,6 +4,7 @@ using System.Threading; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Options; using Microsoft.Extensions.Primitives; diff --git a/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/DeliveryClientFactoryTests.cs b/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/DeliveryClientFactoryTests.cs index 8f9ee855..5eff5004 100644 --- a/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/DeliveryClientFactoryTests.cs +++ b/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/DeliveryClientFactoryTests.cs @@ -4,6 +4,7 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Options; using System; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Xunit; namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests diff --git a/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedCacheClient.cs b/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedCacheClient.cs index 0c05222f..8c8f0844 100644 --- a/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedCacheClient.cs +++ b/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedCacheClient.cs @@ -5,6 +5,8 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using System; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Extensions.DependencyInjection.Extensions; using Xunit; namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests diff --git a/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedClient.cs b/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedClient.cs index c8d89445..ffacb62b 100644 --- a/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedClient.cs +++ b/Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.NamedClient.cs @@ -4,6 +4,9 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using System; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Extensions.DependencyInjection.Extensions; using Xunit; namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection.Tests diff --git a/Kentico.Kontent.Delivery.Extensions.DependencyInjection/Extensions/ServiceCollectionExtensions.cs b/Kentico.Kontent.Delivery.Extensions.DependencyInjection/Extensions/ServiceCollectionExtensions.cs index 032b5583..6a38d472 100644 --- a/Kentico.Kontent.Delivery.Extensions.DependencyInjection/Extensions/ServiceCollectionExtensions.cs +++ b/Kentico.Kontent.Delivery.Extensions.DependencyInjection/Extensions/ServiceCollectionExtensions.cs @@ -1,17 +1,19 @@ -using Kentico.Kontent.Delivery.Abstractions; +using System; +using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.Extensions; using Kentico.Kontent.Delivery.Caching; using Kentico.Kontent.Delivery.Caching.Extensions; using Kentico.Kontent.Delivery.Configuration; +using Kentico.Kontent.Delivery.Extensions.DependencyInjection.NamedServiceProviders; using Kentico.Kontent.Delivery.Helpers; using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; -using Kentico.Kontent.Delivery.Abstractions.Extensions; -using System; -namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection +namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection.Extensions { /// /// A class which contains extension methods on for registering an instance. diff --git a/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedDeliveryClientFactory.cs b/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedDeliveryClientFactory.cs index 96da1bdd..adc5dd17 100644 --- a/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedDeliveryClientFactory.cs +++ b/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedDeliveryClientFactory.cs @@ -5,6 +5,9 @@ using Newtonsoft.Json; using System; using System.Collections.Concurrent; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection { diff --git a/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedServiceProviders/AutofacServiceProvider.cs b/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedServiceProviders/AutofacServiceProvider.cs index f37e682d..ce6da4e6 100644 --- a/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedServiceProviders/AutofacServiceProvider.cs +++ b/Kentico.Kontent.Delivery.Extensions.DependencyInjection/NamedServiceProviders/AutofacServiceProvider.cs @@ -1,6 +1,6 @@ using Autofac; -namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection +namespace Kentico.Kontent.Delivery.Extensions.DependencyInjection.NamedServiceProviders { internal class AutofacServiceProvider : INamedServiceProvider { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/DeliveryObservableProxyTests.cs b/Kentico.Kontent.Delivery.Rx.Tests/DeliveryObservableProxyTests.cs index 012f05ad..0ff5db4a 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/DeliveryObservableProxyTests.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/DeliveryObservableProxyTests.cs @@ -8,6 +8,11 @@ using AngleSharp.Html.Parser; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes; using Kentico.Kontent.Delivery.Urls.QueryParameters; diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/AboutUs.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/AboutUs.cs index 54497a64..5c7577ed 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/AboutUs.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/AboutUs.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Accessory.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Accessory.cs index 717893fc..20e54f7b 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Accessory.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Accessory.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Article.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Article.cs index 45484b47..d8a30f96 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Article.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Article.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Brewer.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Brewer.cs index f9e113c3..0605eab1 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Brewer.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Brewer.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Cafe.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Cafe.cs index 99aff667..23a6e281 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Cafe.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Cafe.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Coffee.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Coffee.cs index d6ceec8b..2b50b337 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Coffee.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Coffee.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/CustomTypeProvider.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/CustomTypeProvider.cs index 910110d6..b5d71643 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/CustomTypeProvider.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/CustomTypeProvider.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/FactAboutUs.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/FactAboutUs.cs index ff15e194..984f7d2d 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/FactAboutUs.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/FactAboutUs.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Grinder.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Grinder.cs index fc3a830d..d8625cd7 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Grinder.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Grinder.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HeroUnit.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HeroUnit.cs index 69b8bcaa..4288911b 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HeroUnit.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HeroUnit.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Home.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Home.cs index 33b38e52..ba3f099c 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Home.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Home.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HostedVideo.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HostedVideo.cs index 98347cd8..f120e0d4 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HostedVideo.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/HostedVideo.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Office.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Office.cs index 3e3685c6..bd0b2497 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Office.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Office.cs @@ -5,6 +5,7 @@ // For further modifications of the class, create a separate file with the partial class. using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Tweet.cs b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Tweet.cs index ea4fcacd..c5b2b11a 100644 --- a/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Tweet.cs +++ b/Kentico.Kontent.Delivery.Rx.Tests/Models/ContentTypes/Tweet.cs @@ -6,6 +6,8 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Rx.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Rx/DeliveryObservableProxy.cs b/Kentico.Kontent.Delivery.Rx/DeliveryObservableProxy.cs index 8ef900e1..3ce24cf4 100644 --- a/Kentico.Kontent.Delivery.Rx/DeliveryObservableProxy.cs +++ b/Kentico.Kontent.Delivery.Rx/DeliveryObservableProxy.cs @@ -3,6 +3,10 @@ using System.Reactive.Disposables; using System.Reactive.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; +using Kentico.Kontent.Delivery.Abstractions.Languages; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; namespace Kentico.Kontent.Delivery.Rx { diff --git a/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsBuilderTests.cs b/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsBuilderTests.cs index b8a6a802..c3625daa 100644 --- a/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsBuilderTests.cs +++ b/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsBuilderTests.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.Configuration; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsValidatorTests.cs b/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsValidatorTests.cs index 6d7b9f48..215dd595 100644 --- a/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsValidatorTests.cs +++ b/Kentico.Kontent.Delivery.Tests/Builders/Configuration/DeliveryOptionsValidatorTests.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.Configuration; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/Builders/DeliveryClient/DeliveryClientBuilderTests.cs b/Kentico.Kontent.Delivery.Tests/Builders/DeliveryClient/DeliveryClientBuilderTests.cs index 29391aaf..f74c2d55 100644 --- a/Kentico.Kontent.Delivery.Tests/Builders/DeliveryClient/DeliveryClientBuilderTests.cs +++ b/Kentico.Kontent.Delivery.Tests/Builders/DeliveryClient/DeliveryClientBuilderTests.cs @@ -2,6 +2,10 @@ using System.Collections.Generic; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.Builders.DeliveryClient; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.ContentItems.InlineContentItems; diff --git a/Kentico.Kontent.Delivery.Tests/ContentItemsInRichTextProcessorTests.cs b/Kentico.Kontent.Delivery.Tests/ContentItemsInRichTextProcessorTests.cs index b6fb3f2c..6eed2c51 100644 --- a/Kentico.Kontent.Delivery.Tests/ContentItemsInRichTextProcessorTests.cs +++ b/Kentico.Kontent.Delivery.Tests/ContentItemsInRichTextProcessorTests.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.Tests.Factories; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/ContentLinkResolverTests.cs b/Kentico.Kontent.Delivery.Tests/ContentLinkResolverTests.cs index 4ae1efae..787006c3 100644 --- a/Kentico.Kontent.Delivery.Tests/ContentLinkResolverTests.cs +++ b/Kentico.Kontent.Delivery.Tests/ContentLinkResolverTests.cs @@ -4,6 +4,8 @@ using System.Threading.Tasks; using AngleSharp.Html.Parser; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.ContentItems.ContentLinks; using Kentico.Kontent.Delivery.RetryPolicy; diff --git a/Kentico.Kontent.Delivery.Tests/DeliveryClientTests.cs b/Kentico.Kontent.Delivery.Tests/DeliveryClientTests.cs index 5e59c4ed..14fe7f40 100644 --- a/Kentico.Kontent.Delivery.Tests/DeliveryClientTests.cs +++ b/Kentico.Kontent.Delivery.Tests/DeliveryClientTests.cs @@ -8,6 +8,11 @@ using AngleSharp.Html.Parser; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.Builders.DeliveryClient; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.ContentItems.RichText.Blocks; diff --git a/Kentico.Kontent.Delivery.Tests/DeliveryOptionsExtensionsTests.cs b/Kentico.Kontent.Delivery.Tests/DeliveryOptionsExtensionsTests.cs index e27c5f79..557c653b 100644 --- a/Kentico.Kontent.Delivery.Tests/DeliveryOptionsExtensionsTests.cs +++ b/Kentico.Kontent.Delivery.Tests/DeliveryOptionsExtensionsTests.cs @@ -3,6 +3,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Kentico.Kontent.Delivery.Abstractions.Extensions; using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Xunit; namespace Kentico.Kontent.Delivery.Tests diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/AutoFacTests.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/AutoFacTests.cs index 1387abda..e1329023 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/AutoFacTests.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/AutoFacTests.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.Tests.DependencyInjectionFrameworks.Helpers; using Microsoft.Extensions.DependencyInjection; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/CastleWindsorTests.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/CastleWindsorTests.cs index 06bd3c84..1dccddaf 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/CastleWindsorTests.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/CastleWindsorTests.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.Tests.DependencyInjectionFrameworks.Helpers; using Microsoft.Extensions.DependencyInjection; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/DeliveryClientAssertionExtensions.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/DeliveryClientAssertionExtensions.cs index 59a63ec0..2f7931ac 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/DeliveryClientAssertionExtensions.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/DeliveryClientAssertionExtensions.cs @@ -1,5 +1,7 @@ using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.ContentItems.ContentLinks; using Kentico.Kontent.Delivery.ContentItems.InlineContentItems; diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/DependencyInjectionFrameworksHelper.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/DependencyInjectionFrameworksHelper.cs index ed7c8dc3..fadb05ae 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/DependencyInjectionFrameworksHelper.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/DependencyInjectionFrameworksHelper.cs @@ -4,6 +4,7 @@ using Castle.Windsor; using Castle.Windsor.MsDependencyInjection; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.Extensions; using Kentico.Kontent.Delivery.Tests.Factories; using Kentico.Kontent.Delivery.Tests.Models.ContentTypes; diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeModelProvider.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeModelProvider.cs index 04e172f7..dcfbea79 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeModelProvider.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeModelProvider.cs @@ -2,6 +2,7 @@ using System.Collections; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Tests.DependencyInjectionFrameworks.Helpers { diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeTweetResolver.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeTweetResolver.cs index e1c0445f..9417fb2a 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeTweetResolver.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/Helpers/FakeTweetResolver.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; using Kentico.Kontent.Delivery.Tests.Models.ContentTypes; namespace Kentico.Kontent.Delivery.Tests.DependencyInjectionFrameworks.Helpers diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/SimpleInjectorTests.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/SimpleInjectorTests.cs index 3b41d90f..8490b5aa 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/SimpleInjectorTests.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/SimpleInjectorTests.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.Tests.DependencyInjectionFrameworks.Helpers; using Microsoft.Extensions.DependencyInjection; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/UnityTests.cs b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/UnityTests.cs index 05198275..7a4d2e38 100644 --- a/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/UnityTests.cs +++ b/Kentico.Kontent.Delivery.Tests/DependencyInjectionFrameworks/UnityTests.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.Tests.DependencyInjectionFrameworks.Helpers; using Microsoft.Extensions.DependencyInjection; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/Extensions/ServiceCollectionsExtensionsTests.cs b/Kentico.Kontent.Delivery.Tests/Extensions/ServiceCollectionsExtensionsTests.cs index 1911ff80..b57377c0 100644 --- a/Kentico.Kontent.Delivery.Tests/Extensions/ServiceCollectionsExtensionsTests.cs +++ b/Kentico.Kontent.Delivery.Tests/Extensions/ServiceCollectionsExtensionsTests.cs @@ -3,6 +3,11 @@ using System.Collections.ObjectModel; using System.IO; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.ContentItems.ContentLinks; using Kentico.Kontent.Delivery.ContentItems.InlineContentItems; diff --git a/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactory.cs b/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactory.cs index 3b467eba..f989f7bd 100644 --- a/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactory.cs +++ b/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactory.cs @@ -2,6 +2,9 @@ using System.Net.Http; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using RichardSzalay.MockHttp; namespace Kentico.Kontent.Delivery.Tests.Factories diff --git a/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactoryTests.cs b/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactoryTests.cs index 8c485ab3..4a299401 100644 --- a/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactoryTests.cs +++ b/Kentico.Kontent.Delivery.Tests/Factories/DeliveryClientFactoryTests.cs @@ -1,6 +1,7 @@ using System; using FluentAssertions; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Microsoft.Extensions.DependencyInjection; using Xunit; using Kentico.Kontent.Delivery.Extensions; diff --git a/Kentico.Kontent.Delivery.Tests/Factories/DeliveryOptionsFactory.cs b/Kentico.Kontent.Delivery.Tests/Factories/DeliveryOptionsFactory.cs index 18c3e8e3..68d9cc6c 100644 --- a/Kentico.Kontent.Delivery.Tests/Factories/DeliveryOptionsFactory.cs +++ b/Kentico.Kontent.Delivery.Tests/Factories/DeliveryOptionsFactory.cs @@ -1,5 +1,6 @@ using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Microsoft.Extensions.Options; namespace Kentico.Kontent.Delivery.Tests.Factories diff --git a/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsProcessorFactory.cs b/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsProcessorFactory.cs index 3afa22f1..df2bd8e4 100644 --- a/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsProcessorFactory.cs +++ b/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsProcessorFactory.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; using Kentico.Kontent.Delivery.ContentItems.InlineContentItems; namespace Kentico.Kontent.Delivery.Tests.Factories diff --git a/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsResolverFactory.cs b/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsResolverFactory.cs index 93063531..168d2738 100644 --- a/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsResolverFactory.cs +++ b/Kentico.Kontent.Delivery.Tests/Factories/InlineContentItemsResolverFactory.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; namespace Kentico.Kontent.Delivery.Tests.Factories { diff --git a/Kentico.Kontent.Delivery.Tests/FakeHttpClientTests.cs b/Kentico.Kontent.Delivery.Tests/FakeHttpClientTests.cs index 8f1e242c..0284eeb0 100644 --- a/Kentico.Kontent.Delivery.Tests/FakeHttpClientTests.cs +++ b/Kentico.Kontent.Delivery.Tests/FakeHttpClientTests.cs @@ -4,6 +4,9 @@ using System.Threading.Tasks; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.Builders.DeliveryClient; using Kentico.Kontent.Delivery.Configuration; using Kentico.Kontent.Delivery.Tests.Models.ContentTypes; diff --git a/Kentico.Kontent.Delivery.Tests/ModelProviderTests.cs b/Kentico.Kontent.Delivery.Tests/ModelProviderTests.cs index 8ac5cf42..4dbc908d 100644 --- a/Kentico.Kontent.Delivery.Tests/ModelProviderTests.cs +++ b/Kentico.Kontent.Delivery.Tests/ModelProviderTests.cs @@ -4,6 +4,9 @@ using AngleSharp.Html.Parser; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.Tests.Factories; using Newtonsoft.Json.Linq; diff --git a/Kentico.Kontent.Delivery.Tests/Models/ArticlePartialItemModel.cs b/Kentico.Kontent.Delivery.Tests/Models/ArticlePartialItemModel.cs index cfc1dcfe..84b33008 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ArticlePartialItemModel.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ArticlePartialItemModel.cs @@ -1,5 +1,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models { diff --git a/Kentico.Kontent.Delivery.Tests/Models/CompleteContentItemModel.cs b/Kentico.Kontent.Delivery.Tests/Models/CompleteContentItemModel.cs index 61fa3dd4..2dd28afe 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/CompleteContentItemModel.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/CompleteContentItemModel.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentItemModelWithAttributes.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentItemModelWithAttributes.cs index 38f489d3..0d9ca352 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentItemModelWithAttributes.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentItemModelWithAttributes.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.Tests.Models diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/AboutUs.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/AboutUs.Generated.cs index bde6643f..33d652aa 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/AboutUs.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/AboutUs.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Accessory.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Accessory.Generated.cs index 55d80365..0552e2ab 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Accessory.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Accessory.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.Generated.cs index 6a70b3b1..432f5d49 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.cs index 20190e8f..dd37d838 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Article.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText; using Newtonsoft.Json; using NodaTime; diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/ArticleWithImplementedTypes.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/ArticleWithImplementedTypes.cs index 3dc398f0..3a1da5f1 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/ArticleWithImplementedTypes.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/ArticleWithImplementedTypes.cs @@ -7,6 +7,9 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Brewer.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Brewer.Generated.cs index bbd7f74c..bf2fe84a 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Brewer.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Brewer.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Cafe.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Cafe.Generated.cs index 062546ee..ad20b354 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Cafe.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Cafe.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Coffee.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Coffee.Generated.cs index 8355b501..3ae64a01 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Coffee.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Coffee.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/CustomTypeProvider.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/CustomTypeProvider.cs index a377c384..36db1c14 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/CustomTypeProvider.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/CustomTypeProvider.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/FactAboutUs.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/FactAboutUs.Generated.cs index 71d12d3e..e1623d40 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/FactAboutUs.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/FactAboutUs.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Grinder.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Grinder.Generated.cs index 1243c336..7e272131 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Grinder.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Grinder.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HeroUnit.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HeroUnit.Generated.cs index 3d6868d8..fddfe1d1 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HeroUnit.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HeroUnit.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Home.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Home.Generated.cs index a0d98bfa..fc093cbf 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Home.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Home.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HostedVideo.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HostedVideo.Generated.cs index 7bb54cd0..40ac673c 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HostedVideo.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/HostedVideo.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Office.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Office.Generated.cs index 6f06e4c9..c66f8b20 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Office.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Office.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/SimpleRichText.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/SimpleRichText.cs index 92b01dbd..3f7ef304 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/SimpleRichText.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/SimpleRichText.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes diff --git a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Tweet.Generated.cs b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Tweet.Generated.cs index 2ed69794..116593c7 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Tweet.Generated.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/ContentTypes/Tweet.Generated.cs @@ -7,6 +7,8 @@ using System; using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models.ContentTypes { diff --git a/Kentico.Kontent.Delivery.Tests/Models/Homepage.cs b/Kentico.Kontent.Delivery.Tests/Models/Homepage.cs index 81c0fbb3..4afaec03 100644 --- a/Kentico.Kontent.Delivery.Tests/Models/Homepage.cs +++ b/Kentico.Kontent.Delivery.Tests/Models/Homepage.cs @@ -1,5 +1,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Tests.Models { diff --git a/Kentico.Kontent.Delivery.Tests/QueryParameters/ContentTypeExtractorTests.cs b/Kentico.Kontent.Delivery.Tests/QueryParameters/ContentTypeExtractorTests.cs index 302924ea..c9d37b25 100644 --- a/Kentico.Kontent.Delivery.Tests/QueryParameters/ContentTypeExtractorTests.cs +++ b/Kentico.Kontent.Delivery.Tests/QueryParameters/ContentTypeExtractorTests.cs @@ -2,6 +2,8 @@ using AngleSharp.Html.Parser; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.Tests.Factories; using Kentico.Kontent.Delivery.Urls.QueryParameters; diff --git a/Kentico.Kontent.Delivery.Tests/QueryParameters/IncludeTotalCountTests.cs b/Kentico.Kontent.Delivery.Tests/QueryParameters/IncludeTotalCountTests.cs index 6bfa3619..6b3e90ff 100644 --- a/Kentico.Kontent.Delivery.Tests/QueryParameters/IncludeTotalCountTests.cs +++ b/Kentico.Kontent.Delivery.Tests/QueryParameters/IncludeTotalCountTests.cs @@ -2,6 +2,7 @@ using FakeItEasy; using FluentAssertions; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.SharedModels; using Kentico.Kontent.Delivery.Tests.Models.ContentTypes; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyProviderTests.cs b/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyProviderTests.cs index 1015d46b..97f7df28 100644 --- a/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyProviderTests.cs +++ b/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyProviderTests.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.RetryPolicy; using Microsoft.Extensions.Options; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyTests.cs b/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyTests.cs index 1df42167..36a9dcbc 100644 --- a/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyTests.cs +++ b/Kentico.Kontent.Delivery.Tests/RetryPolicy/DefaultRetryPolicyTests.cs @@ -7,6 +7,7 @@ using System.Net.Http.Headers; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.RetryPolicy; using Xunit; diff --git a/Kentico.Kontent.Delivery.Tests/ValueConverterTests.cs b/Kentico.Kontent.Delivery.Tests/ValueConverterTests.cs index 3fe24cbc..bd87653b 100644 --- a/Kentico.Kontent.Delivery.Tests/ValueConverterTests.cs +++ b/Kentico.Kontent.Delivery.Tests/ValueConverterTests.cs @@ -7,6 +7,12 @@ using AngleSharp.Html.Parser; using FakeItEasy; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.Tests.Factories; using Kentico.Kontent.Delivery.Tests.Models.ContentTypes; diff --git a/Kentico.Kontent.Delivery.Urls/DeliveryEndpointUrlBuilder.cs b/Kentico.Kontent.Delivery.Urls/DeliveryEndpointUrlBuilder.cs index 5615d2c3..cb129e9c 100644 --- a/Kentico.Kontent.Delivery.Urls/DeliveryEndpointUrlBuilder.cs +++ b/Kentico.Kontent.Delivery.Urls/DeliveryEndpointUrlBuilder.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.Urls.QueryParameters; using Microsoft.Extensions.Options; diff --git a/Kentico.Kontent.Delivery.Urls/QueryParameters/IncludeTotalCountParameter.cs b/Kentico.Kontent.Delivery.Urls/QueryParameters/IncludeTotalCountParameter.cs index a297221c..8fa424aa 100644 --- a/Kentico.Kontent.Delivery.Urls/QueryParameters/IncludeTotalCountParameter.cs +++ b/Kentico.Kontent.Delivery.Urls/QueryParameters/IncludeTotalCountParameter.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; namespace Kentico.Kontent.Delivery.Urls.QueryParameters { diff --git a/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilder.cs b/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilder.cs index 0da95d0b..5d7519d6 100644 --- a/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilder.cs +++ b/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilder.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; using Kentico.Kontent.Delivery.Configuration; namespace Kentico.Kontent.Delivery.Builders.DeliveryClient diff --git a/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilderImplementation.cs b/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilderImplementation.cs index e13f3906..68cdec57 100644 --- a/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilderImplementation.cs +++ b/Kentico.Kontent.Delivery/Builders/DeliveryClient/DeliveryClientBuilderImplementation.cs @@ -1,5 +1,10 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.Configuration; using Kentico.Kontent.Delivery.Extensions; using Microsoft.Extensions.DependencyInjection; diff --git a/Kentico.Kontent.Delivery/Builders/DeliveryClient/IDeliveryClientBuilder.cs b/Kentico.Kontent.Delivery/Builders/DeliveryClient/IDeliveryClientBuilder.cs index 144ed020..c8861237 100644 --- a/Kentico.Kontent.Delivery/Builders/DeliveryClient/IDeliveryClientBuilder.cs +++ b/Kentico.Kontent.Delivery/Builders/DeliveryClient/IDeliveryClientBuilder.cs @@ -1,5 +1,10 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.Configuration; namespace Kentico.Kontent.Delivery.Builders.DeliveryClient diff --git a/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsBuilder.cs b/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsBuilder.cs index 5fbb27ae..efb1d627 100644 --- a/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsBuilder.cs +++ b/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsBuilder.cs @@ -1,6 +1,7 @@ using System; using Kentico.Kontent.Delivery.Abstractions; -using DefaultRetryPolicyOptions = Kentico.Kontent.Delivery.Abstractions.DefaultRetryPolicyOptions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using DefaultRetryPolicyOptions = Kentico.Kontent.Delivery.Abstractions.Configuration.DefaultRetryPolicyOptions; namespace Kentico.Kontent.Delivery.Configuration { diff --git a/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsMonitor.cs b/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsMonitor.cs index e9b6b33c..851acae0 100644 --- a/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsMonitor.cs +++ b/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsMonitor.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Microsoft.Extensions.Options; using System; +using Kentico.Kontent.Delivery.Abstractions.Configuration; namespace Kentico.Kontent.Delivery.Configuration { diff --git a/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsValidator.cs b/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsValidator.cs index e77ad6e2..5cc2071f 100644 --- a/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsValidator.cs +++ b/Kentico.Kontent.Delivery/Configuration/DeliveryOptionsValidator.cs @@ -1,6 +1,7 @@ using System; using System.Text.RegularExpressions; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; namespace Kentico.Kontent.Delivery.Configuration { diff --git a/Kentico.Kontent.Delivery/Configuration/IDeliveryOptionsBuilder.cs b/Kentico.Kontent.Delivery/Configuration/IDeliveryOptionsBuilder.cs index 5ec9895e..63f237b7 100644 --- a/Kentico.Kontent.Delivery/Configuration/IDeliveryOptionsBuilder.cs +++ b/Kentico.Kontent.Delivery/Configuration/IDeliveryOptionsBuilder.cs @@ -1,6 +1,7 @@ using System; using Kentico.Kontent.Delivery.Urls.QueryParameters; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; namespace Kentico.Kontent.Delivery.Configuration diff --git a/Kentico.Kontent.Delivery/ContentItems/Asset.cs b/Kentico.Kontent.Delivery/ContentItems/Asset.cs index 32d1c423..3d4c3874 100644 --- a/Kentico.Kontent.Delivery/ContentItems/Asset.cs +++ b/Kentico.Kontent.Delivery/ContentItems/Asset.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.ContentItems { diff --git a/Kentico.Kontent.Delivery/ContentItems/ContentItemSystemAttributes.cs b/Kentico.Kontent.Delivery/ContentItems/ContentItemSystemAttributes.cs index c2d9aef9..e08a9163 100644 --- a/Kentico.Kontent.Delivery/ContentItems/ContentItemSystemAttributes.cs +++ b/Kentico.Kontent.Delivery/ContentItems/ContentItemSystemAttributes.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Diagnostics; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentItems diff --git a/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLink.cs b/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLink.cs index 137ca60d..d8c5e4e1 100644 --- a/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLink.cs +++ b/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLink.cs @@ -2,6 +2,7 @@ using Newtonsoft.Json; using System; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; namespace Kentico.Kontent.Delivery.ContentItems.ContentLinks { diff --git a/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkResolver.cs b/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkResolver.cs index c363a8ed..296dabd8 100644 --- a/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkResolver.cs +++ b/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkResolver.cs @@ -5,6 +5,7 @@ using System.Text.RegularExpressions; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; namespace Kentico.Kontent.Delivery.ContentItems.ContentLinks { diff --git a/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkUrlResolver.cs b/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkUrlResolver.cs index 63187743..1ca95d3d 100644 --- a/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkUrlResolver.cs +++ b/Kentico.Kontent.Delivery/ContentItems/ContentLinks/ContentLinkUrlResolver.cs @@ -1,5 +1,6 @@ using Kentico.Kontent.Delivery.Abstractions; using System.Threading.Tasks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; namespace Kentico.Kontent.Delivery.ContentItems.ContentLinks { diff --git a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemListingResponse.cs b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemListingResponse.cs index 00aa0271..ea600702 100644 --- a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemListingResponse.cs +++ b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemListingResponse.cs @@ -1,5 +1,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemResponse.cs b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemResponse.cs index 40e2ccea..61e68e87 100644 --- a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemResponse.cs +++ b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemResponse.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeed.cs b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeed.cs index 79d45ead..b113f529 100644 --- a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeed.cs +++ b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeed.cs @@ -1,6 +1,7 @@ using System; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.ContentItems { diff --git a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeedResponse.cs b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeedResponse.cs index a55f20f3..779aa9ff 100644 --- a/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeedResponse.cs +++ b/Kentico.Kontent.Delivery/ContentItems/DeliveryItemsFeedResponse.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Kentico.Kontent.Delivery.SharedModels; namespace Kentico.Kontent.Delivery.ContentItems diff --git a/Kentico.Kontent.Delivery/ContentItems/Elements/ContentElementValue.cs b/Kentico.Kontent.Delivery/ContentItems/Elements/ContentElementValue.cs index fcdf45d0..14c2e1e0 100644 --- a/Kentico.Kontent.Delivery/ContentItems/Elements/ContentElementValue.cs +++ b/Kentico.Kontent.Delivery/ContentItems/Elements/ContentElementValue.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentItems.Elements diff --git a/Kentico.Kontent.Delivery/ContentItems/Elements/RichTextElementValue.cs b/Kentico.Kontent.Delivery/ContentItems/Elements/RichTextElementValue.cs index 96d4ea04..c8b4530b 100644 --- a/Kentico.Kontent.Delivery/ContentItems/Elements/RichTextElementValue.cs +++ b/Kentico.Kontent.Delivery/ContentItems/Elements/RichTextElementValue.cs @@ -2,6 +2,9 @@ using Newtonsoft.Json; using System; using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; namespace Kentico.Kontent.Delivery.ContentItems.Elements { diff --git a/Kentico.Kontent.Delivery/ContentItems/Elements/TaxonomyElementValue.cs b/Kentico.Kontent.Delivery/ContentItems/Elements/TaxonomyElementValue.cs index 7e66aae2..fd6e5d56 100644 --- a/Kentico.Kontent.Delivery/ContentItems/Elements/TaxonomyElementValue.cs +++ b/Kentico.Kontent.Delivery/ContentItems/Elements/TaxonomyElementValue.cs @@ -1,6 +1,8 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.ContentItems.Elements { diff --git a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/InlineContentItemsProcessor.cs b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/InlineContentItemsProcessor.cs index 901fc1d2..fe8d16a8 100644 --- a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/InlineContentItemsProcessor.cs +++ b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/InlineContentItemsProcessor.cs @@ -7,6 +7,8 @@ using AngleSharp.Html.Dom; using AngleSharp.Html.Parser; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; using Kentico.Kontent.Delivery.Builders.DeliveryClient; using Microsoft.Extensions.DependencyInjection; diff --git a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutRegistrationResolver.cs b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutRegistrationResolver.cs index 6795acdc..54f75b2b 100644 --- a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutRegistrationResolver.cs +++ b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutRegistrationResolver.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; namespace Kentico.Kontent.Delivery.ContentItems.InlineContentItems { diff --git a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnknownItemResolver.cs b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnknownItemResolver.cs index 47bd450a..3ab663b6 100644 --- a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnknownItemResolver.cs +++ b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnknownItemResolver.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; namespace Kentico.Kontent.Delivery.ContentItems.InlineContentItems { diff --git a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnretrievedItemResolver.cs b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnretrievedItemResolver.cs index 161fa5bb..83d9f164 100644 --- a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnretrievedItemResolver.cs +++ b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/ReplaceWithWarningAboutUnretrievedItemResolver.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; namespace Kentico.Kontent.Delivery.ContentItems.InlineContentItems { diff --git a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/TypelessInlineContentItemsResolver.cs b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/TypelessInlineContentItemsResolver.cs index abb05c44..5a2e433c 100644 --- a/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/TypelessInlineContentItemsResolver.cs +++ b/Kentico.Kontent.Delivery/ContentItems/InlineContentItems/TypelessInlineContentItemsResolver.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; using Kentico.Kontent.Delivery.Builders.DeliveryClient; using Microsoft.Extensions.DependencyInjection; diff --git a/Kentico.Kontent.Delivery/ContentItems/ModelProvider.cs b/Kentico.Kontent.Delivery/ContentItems/ModelProvider.cs index 202ddba0..cc75fcac 100644 --- a/Kentico.Kontent.Delivery/ContentItems/ModelProvider.cs +++ b/Kentico.Kontent.Delivery/ContentItems/ModelProvider.cs @@ -6,6 +6,12 @@ using System.Threading.Tasks; using AngleSharp.Html.Parser; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; using Kentico.Kontent.Delivery.ContentItems.ContentLinks; using Kentico.Kontent.Delivery.ContentItems.Elements; using Kentico.Kontent.Delivery.ContentItems.InlineContentItems; diff --git a/Kentico.Kontent.Delivery/ContentItems/PropertyMapper.cs b/Kentico.Kontent.Delivery/ContentItems/PropertyMapper.cs index 47df6775..32518dfb 100644 --- a/Kentico.Kontent.Delivery/ContentItems/PropertyMapper.cs +++ b/Kentico.Kontent.Delivery/ContentItems/PropertyMapper.cs @@ -1,6 +1,7 @@ using System; using System.Reflection; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentItems diff --git a/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/HtmlContent.cs b/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/HtmlContent.cs index 03cf535b..dfd98090 100644 --- a/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/HtmlContent.cs +++ b/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/HtmlContent.cs @@ -1,5 +1,6 @@ using System.ComponentModel.DataAnnotations; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; using Kentico.Kontent.Delivery.ContentItems.RichText.Attributes; namespace Kentico.Kontent.Delivery.ContentItems.RichText.Blocks diff --git a/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineContentItem.cs b/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineContentItem.cs index fa2826df..fb012725 100644 --- a/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineContentItem.cs +++ b/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineContentItem.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentItems.RichText.Blocks diff --git a/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineImage.cs b/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineImage.cs index ef28cbcc..9d193cbb 100644 --- a/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineImage.cs +++ b/Kentico.Kontent.Delivery/ContentItems/RichText/Blocks/InlineImage.cs @@ -3,6 +3,7 @@ using Newtonsoft.Json; using System; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; namespace Kentico.Kontent.Delivery.ContentItems.RichText.Blocks { diff --git a/Kentico.Kontent.Delivery/ContentItems/RichText/RichTextContent.cs b/Kentico.Kontent.Delivery/ContentItems/RichText/RichTextContent.cs index 3cb2c204..121eb1c7 100644 --- a/Kentico.Kontent.Delivery/ContentItems/RichText/RichTextContent.cs +++ b/Kentico.Kontent.Delivery/ContentItems/RichText/RichTextContent.cs @@ -1,5 +1,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText.Blocks; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentItems.RichText diff --git a/Kentico.Kontent.Delivery/ContentItems/RichTextContentConverter.cs b/Kentico.Kontent.Delivery/ContentItems/RichTextContentConverter.cs index 3969a42f..39062fc2 100644 --- a/Kentico.Kontent.Delivery/ContentItems/RichTextContentConverter.cs +++ b/Kentico.Kontent.Delivery/ContentItems/RichTextContentConverter.cs @@ -5,6 +5,9 @@ using System.Threading.Tasks; using AngleSharp.Html.Parser; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.Elements; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.RichText; using Kentico.Kontent.Delivery.ContentItems.ContentLinks; using Kentico.Kontent.Delivery.ContentItems.RichText; using Kentico.Kontent.Delivery.ContentItems.RichText.Blocks; diff --git a/Kentico.Kontent.Delivery/ContentItems/TypeProvider.cs b/Kentico.Kontent.Delivery/ContentItems/TypeProvider.cs index aa60312b..2b374050 100644 --- a/Kentico.Kontent.Delivery/ContentItems/TypeProvider.cs +++ b/Kentico.Kontent.Delivery/ContentItems/TypeProvider.cs @@ -1,5 +1,6 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; namespace Kentico.Kontent.Delivery.ContentItems { diff --git a/Kentico.Kontent.Delivery/ContentTypes/ContentType.cs b/Kentico.Kontent.Delivery/ContentTypes/ContentType.cs index 18d0f05c..e2371b08 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/ContentType.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/ContentType.cs @@ -2,6 +2,8 @@ using System.Diagnostics; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; using Kentico.Kontent.Delivery.ContentTypes.Element; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/ContentTypes/ContentTypeSystemAttributes.cs b/Kentico.Kontent.Delivery/ContentTypes/ContentTypeSystemAttributes.cs index 28f4074e..577432ce 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/ContentTypeSystemAttributes.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/ContentTypeSystemAttributes.cs @@ -1,6 +1,7 @@ using System; using System.Diagnostics; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentTypes diff --git a/Kentico.Kontent.Delivery/ContentTypes/DeliveryElementResponse.cs b/Kentico.Kontent.Delivery/ContentTypes/DeliveryElementResponse.cs index 395a39c9..741d8ba0 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/DeliveryElementResponse.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/DeliveryElementResponse.cs @@ -1,5 +1,7 @@ using System.Diagnostics; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeListingResponse.cs b/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeListingResponse.cs index 2038ae0d..5ded0320 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeListingResponse.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeListingResponse.cs @@ -1,5 +1,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeResponse.cs b/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeResponse.cs index 0f7d4f36..77b0252d 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeResponse.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/DeliveryTypeResponse.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElement.cs b/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElement.cs index 31e66a19..0636430a 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElement.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElement.cs @@ -1,5 +1,6 @@ using System.Diagnostics; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentTypes.Element diff --git a/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElementConverter.cs b/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElementConverter.cs index 74d01fa0..428aff16 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElementConverter.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/Element/ContentElementConverter.cs @@ -1,6 +1,7 @@ using Newtonsoft.Json; using Kentico.Kontent.Delivery.Abstractions; using System; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; using Newtonsoft.Json.Linq; namespace Kentico.Kontent.Delivery.ContentTypes.Element diff --git a/Kentico.Kontent.Delivery/ContentTypes/Element/MultipleChoiceElement.cs b/Kentico.Kontent.Delivery/ContentTypes/Element/MultipleChoiceElement.cs index bc5ce6a8..26b19907 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/Element/MultipleChoiceElement.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/Element/MultipleChoiceElement.cs @@ -1,6 +1,8 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.ContentTypes.Element { diff --git a/Kentico.Kontent.Delivery/ContentTypes/Element/TaxonomyElement.cs b/Kentico.Kontent.Delivery/ContentTypes/Element/TaxonomyElement.cs index 964482c9..b3e181fa 100644 --- a/Kentico.Kontent.Delivery/ContentTypes/Element/TaxonomyElement.cs +++ b/Kentico.Kontent.Delivery/ContentTypes/Element/TaxonomyElement.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.ContentTypes.Element diff --git a/Kentico.Kontent.Delivery/DeliveryClient.cs b/Kentico.Kontent.Delivery/DeliveryClient.cs index 2a528a85..dae20546 100644 --- a/Kentico.Kontent.Delivery/DeliveryClient.cs +++ b/Kentico.Kontent.Delivery/DeliveryClient.cs @@ -6,6 +6,13 @@ using System.Text; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; +using Kentico.Kontent.Delivery.Abstractions.Languages; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.ContentTypes; using Kentico.Kontent.Delivery.Extensions; diff --git a/Kentico.Kontent.Delivery/DeliveryClientFactory.cs b/Kentico.Kontent.Delivery/DeliveryClientFactory.cs index eefbc372..dd8975d2 100644 --- a/Kentico.Kontent.Delivery/DeliveryClientFactory.cs +++ b/Kentico.Kontent.Delivery/DeliveryClientFactory.cs @@ -1,5 +1,8 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Options; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/DeliveryContractResolver.cs b/Kentico.Kontent.Delivery/DeliveryContractResolver.cs index c6cbc74c..e0b8bace 100644 --- a/Kentico.Kontent.Delivery/DeliveryContractResolver.cs +++ b/Kentico.Kontent.Delivery/DeliveryContractResolver.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes.Element; using Kentico.Kontent.Delivery.ContentTypes.Element; using Microsoft.Extensions.DependencyInjection; using Newtonsoft.Json.Serialization; diff --git a/Kentico.Kontent.Delivery/Extensions/ServiceCollectionExtensions.cs b/Kentico.Kontent.Delivery/Extensions/ServiceCollectionExtensions.cs index 1f0ea7bb..14583a87 100644 --- a/Kentico.Kontent.Delivery/Extensions/ServiceCollectionExtensions.cs +++ b/Kentico.Kontent.Delivery/Extensions/ServiceCollectionExtensions.cs @@ -3,6 +3,10 @@ using System.Net.Http; using AngleSharp.Html.Parser; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.ContentItems; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.ContentLinks; +using Kentico.Kontent.Delivery.Abstractions.ContentItems.InlineContentItems; using Kentico.Kontent.Delivery.Configuration; using Kentico.Kontent.Delivery.ContentItems; using Kentico.Kontent.Delivery.ContentItems.ContentLinks; @@ -10,6 +14,7 @@ using Kentico.Kontent.Delivery.Helpers; using Kentico.Kontent.Delivery.RetryPolicy; using Kentico.Kontent.Delivery.Abstractions.Extensions; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; diff --git a/Kentico.Kontent.Delivery/Helpers/DeliveryOptionsHelpers.cs b/Kentico.Kontent.Delivery/Helpers/DeliveryOptionsHelpers.cs index 066855e1..d8969058 100644 --- a/Kentico.Kontent.Delivery/Helpers/DeliveryOptionsHelpers.cs +++ b/Kentico.Kontent.Delivery/Helpers/DeliveryOptionsHelpers.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Kentico.Kontent.Delivery.Configuration; using System; +using Kentico.Kontent.Delivery.Abstractions.Configuration; namespace Kentico.Kontent.Delivery.Helpers { diff --git a/Kentico.Kontent.Delivery/Languages/DeliveryLanguageListingResponse.cs b/Kentico.Kontent.Delivery/Languages/DeliveryLanguageListingResponse.cs index ed94a3b3..ccb73bbc 100644 --- a/Kentico.Kontent.Delivery/Languages/DeliveryLanguageListingResponse.cs +++ b/Kentico.Kontent.Delivery/Languages/DeliveryLanguageListingResponse.cs @@ -2,6 +2,8 @@ using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; using System.Collections.Generic; +using Kentico.Kontent.Delivery.Abstractions.Languages; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.Languages { diff --git a/Kentico.Kontent.Delivery/Languages/Language.cs b/Kentico.Kontent.Delivery/Languages/Language.cs index aa7766d3..05ed46dc 100644 --- a/Kentico.Kontent.Delivery/Languages/Language.cs +++ b/Kentico.Kontent.Delivery/Languages/Language.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.Languages; namespace Kentico.Kontent.Delivery.Languages { diff --git a/Kentico.Kontent.Delivery/Languages/LanguageSystemAttributes.cs b/Kentico.Kontent.Delivery/Languages/LanguageSystemAttributes.cs index c7c2033a..fb403d7f 100644 --- a/Kentico.Kontent.Delivery/Languages/LanguageSystemAttributes.cs +++ b/Kentico.Kontent.Delivery/Languages/LanguageSystemAttributes.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.Languages; namespace Kentico.Kontent.Delivery.Languages { diff --git a/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicy.cs b/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicy.cs index 6e392329..207f7ad2 100644 --- a/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicy.cs +++ b/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicy.cs @@ -4,6 +4,8 @@ using System.Net.Http; using System.Threading.Tasks; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Kentico.Kontent.Delivery.Extensions; namespace Kentico.Kontent.Delivery.RetryPolicy diff --git a/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicyProvider.cs b/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicyProvider.cs index d6a1d97f..37280286 100644 --- a/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicyProvider.cs +++ b/Kentico.Kontent.Delivery/RetryPolicy/DefaultRetryPolicyProvider.cs @@ -1,5 +1,7 @@ using System; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.Configuration; +using Kentico.Kontent.Delivery.Abstractions.RetryPolicy; using Microsoft.Extensions.Options; namespace Kentico.Kontent.Delivery.RetryPolicy diff --git a/Kentico.Kontent.Delivery/SharedModels/AbstractResponse.cs b/Kentico.Kontent.Delivery/SharedModels/AbstractResponse.cs index 80aa8b5a..92ac6a04 100644 --- a/Kentico.Kontent.Delivery/SharedModels/AbstractResponse.cs +++ b/Kentico.Kontent.Delivery/SharedModels/AbstractResponse.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.SharedModels { diff --git a/Kentico.Kontent.Delivery/SharedModels/ApiResponse.cs b/Kentico.Kontent.Delivery/SharedModels/ApiResponse.cs index 906beab9..047193ac 100644 --- a/Kentico.Kontent.Delivery/SharedModels/ApiResponse.cs +++ b/Kentico.Kontent.Delivery/SharedModels/ApiResponse.cs @@ -6,6 +6,7 @@ using System.Net.Http; using System.Text; using System.Threading.Tasks; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.SharedModels { diff --git a/Kentico.Kontent.Delivery/SharedModels/Error.cs b/Kentico.Kontent.Delivery/SharedModels/Error.cs index 2eb19a2a..d2018719 100644 --- a/Kentico.Kontent.Delivery/SharedModels/Error.cs +++ b/Kentico.Kontent.Delivery/SharedModels/Error.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.SharedModels diff --git a/Kentico.Kontent.Delivery/SharedModels/MultipleChoiceOption.cs b/Kentico.Kontent.Delivery/SharedModels/MultipleChoiceOption.cs index 2c0724b4..2e4b1236 100644 --- a/Kentico.Kontent.Delivery/SharedModels/MultipleChoiceOption.cs +++ b/Kentico.Kontent.Delivery/SharedModels/MultipleChoiceOption.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.SharedModels { diff --git a/Kentico.Kontent.Delivery/SharedModels/Pagination.cs b/Kentico.Kontent.Delivery/SharedModels/Pagination.cs index 64fc3e5d..f504adbb 100644 --- a/Kentico.Kontent.Delivery/SharedModels/Pagination.cs +++ b/Kentico.Kontent.Delivery/SharedModels/Pagination.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.SharedModels { diff --git a/Kentico.Kontent.Delivery/SharedModels/TaxonomyTerm.cs b/Kentico.Kontent.Delivery/SharedModels/TaxonomyTerm.cs index c689e009..e13f00fa 100644 --- a/Kentico.Kontent.Delivery/SharedModels/TaxonomyTerm.cs +++ b/Kentico.Kontent.Delivery/SharedModels/TaxonomyTerm.cs @@ -1,6 +1,7 @@ using Kentico.Kontent.Delivery.Abstractions; using Newtonsoft.Json; using System.Diagnostics; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; namespace Kentico.Kontent.Delivery.SharedModels { diff --git a/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyListingResponse.cs b/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyListingResponse.cs index 2c2afbc8..7d52e91e 100644 --- a/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyListingResponse.cs +++ b/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyListingResponse.cs @@ -1,5 +1,7 @@ using System.Collections.Generic; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.SharedModels; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyResponse.cs b/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyResponse.cs index ac38fecd..f8e65d58 100644 --- a/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyResponse.cs +++ b/Kentico.Kontent.Delivery/TaxonomyGroups/DeliveryTaxonomyResponse.cs @@ -1,4 +1,5 @@ using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; using Kentico.Kontent.Delivery.ContentTypes; using Kentico.Kontent.Delivery.SharedModels; using Newtonsoft.Json; diff --git a/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroup.cs b/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroup.cs index d68e9ed4..8c82b02d 100644 --- a/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroup.cs +++ b/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroup.cs @@ -1,6 +1,8 @@ using System.Collections.Generic; using System.Diagnostics; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.ContentTypes; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.TaxonomyGroups diff --git a/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroupSystemAttributes.cs b/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroupSystemAttributes.cs index 19a3dbc4..9861c646 100644 --- a/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroupSystemAttributes.cs +++ b/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyGroupSystemAttributes.cs @@ -1,6 +1,7 @@ using System; using System.Diagnostics; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.TaxonomyGroups diff --git a/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyTermDetails.cs b/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyTermDetails.cs index 77947e66..c64a6b15 100644 --- a/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyTermDetails.cs +++ b/Kentico.Kontent.Delivery/TaxonomyGroups/TaxonomyTermDetails.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Diagnostics; using Kentico.Kontent.Delivery.Abstractions; +using Kentico.Kontent.Delivery.Abstractions.TaxonomyGroups; using Newtonsoft.Json; namespace Kentico.Kontent.Delivery.TaxonomyGroups