Skip to content

Commit 0a08356

Browse files
authored
Merge pull request #217 from commercetools/chore-rebranding-to-composable-commerce
chore(docs): update naming to match new branding initiative
2 parents f0601eb + 8997ecc commit 0a08356

File tree

17 files changed

+39
-39
lines changed

17 files changed

+39
-39
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
# commercetools .NET Core SDK
2+
# Composable Commerce .NET Core SDK
33

4-
:warning: **This commercetools .NET Core SDK is in its Active Support mode currently, and is planned to be deprecated, please note the following dates.
4+
:warning: **This Composable Commerce .NET Core SDK is in its Active Support mode currently, and is planned to be deprecated, please note the following dates.
55

66
| Active Support | Maintenance Support | End of Life |
77
| --------------------- | --------------------- | --------------------- |
@@ -15,7 +15,7 @@ We recommend to use our [.NET Core SDK V2](https://docs.commercetools.com/sdk/do
1515
[![AppVeyor Build Status](https://img.shields.io/appveyor/ci/commercetools/commercetools-dotnet-core-sdk.svg)](https://ci.appveyor.com/project/commercetools/commercetools-dotnet-core-sdk)
1616
[![NuGet Version and Downloads count](https://buildstats.info/nuget/commercetools.Sdk.All?includePreReleases=true)](https://www.nuget.org/packages/commercetools.Sdk.All)
1717

18-
The commercetools .NET Core SDK enables developers to easily communicate with the [commercetools HTTP API](https://docs.commercetools.com/http-api.html). The developers do not need to create plain HTTP requests, but they can instead use the domain specific classes and methods to formulate valid requests.
18+
The Composable Commerce .NET Core SDK enables developers to easily communicate with the [HTTP API](https://docs.commercetools.com/http-api.html). The developers do not need to create plain HTTP requests, but they can instead use the domain specific classes and methods to formulate valid requests.
1919

2020
## Installation
2121

@@ -28,7 +28,7 @@ The commercetools .NET Core SDK enables developers to easily communicate with th
2828
The SDK consists of the following projects:
2929
* `commercetools.Sdk.Client`: Contains abstract commands which are used to create instances of HTTP API commands. Some commands are implemented as generic types and you must specify a domain object when using them, whereas others are specific to a domain object.
3030
* `commercetools.Sdk.DependencyInjection`: Default entry point to start using the SDK. Contains one class, `DependencyInjectionSetup`, which initializes all services the SDK uses and injects them into the service collection.
31-
* `commercetools.Sdk.Domain`: Models commercetools domain objects.
31+
* `commercetools.Sdk.Domain`: Models Composable Commerce domain objects.
3232
* `commercetools.Sdk.HttpApi`: Communicates directly with the HTTP API.
3333
* `Client`: Has one method, `ExecuteAsync()`, which executes commands. Executes commands which calls the HTTP API. Takes commands from classes in the `commercetools.Sdk.Client` project to construct implementations of the `IHttpApiCommand` interface.
3434
* `IHttpApiCommand`: Classes implementing this interface are containers for a command from a `commercetools.Sdk.Client` class and a request builder which builds the request to the HTTP API endpoint.
@@ -70,7 +70,7 @@ If other values should be set, the following method overload can be used:
7070
```c#
7171
services.UseCommercetools(
7272
this.configuration, // replace with your instance of IConfiguration
73-
"Client", // replace with your name of the commercetools configuration section
73+
"Client", // replace with your name of the Composable Commerce configuration section
7474
TokenFlow.AnonymousSession); // replace with your initial token flow
7575
```
7676

@@ -200,7 +200,7 @@ Category category = await this.client
200200
.Builder()
201201
.Categories()
202202
.GetById(id)
203-
.ExecuteAsync();
203+
.ExecuteAsync();
204204
```
205205
> Note! For more examples of command builders you can check integration tests in [CustomersIntegrationTestsUsingCommandBuilder](/commercetools.Sdk/IntegrationTests/commercetools.Sdk.IntegrationTests/Customers).
206206

commercetools.Sdk/commercetools.Sdk.All/commercetools.Sdk.All.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>commercetools</authors>
77
<owners>commercetools</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>
9-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
9+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1010
<copyright>Copyright commercetools 2019</copyright>
1111
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

commercetools.Sdk/commercetools.Sdk.Client/commercetools.Sdk.Client.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<authors>commercetools</authors>
88
<owners>commercetools</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
10+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1111
<copyright>Copyright commercetools 2019</copyright>
1212
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1313
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1414
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1515
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1616
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
17-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
17+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

commercetools.Sdk/commercetools.Sdk.DependencyInjection/DependencyInjectionSetup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
namespace Microsoft.Extensions.DependencyInjection
1414
{
1515
/// <summary>
16-
/// Contains extensions methods to use when setting up commercetools dependencies.
16+
/// Contains extensions methods to use when setting up Composable Commerce dependencies.
1717
/// </summary>
1818
public static class DependencyInjectionSetup
1919
{

commercetools.Sdk/commercetools.Sdk.DependencyInjection/commercetools.Sdk.DependencyInjection.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<authors>commercetools</authors>
66
<owners>commercetools</owners>
77
<requireLicenseAcceptance>false</requireLicenseAcceptance>
8-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
8+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
99
<copyright>Copyright commercetools 2019</copyright>
1010
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1111
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1212
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1313
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1414
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
15-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
15+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1616
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1717
</PropertyGroup>
1818

commercetools.Sdk/commercetools.Sdk.Domain/commercetools.Sdk.Domain.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
<authors>commercetools</authors>
77
<owners>commercetools</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>
9-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
9+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1010
<copyright>Copyright commercetools 2019</copyright>
1111
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1313
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1414
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1515
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
16-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
16+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1717
<LangVersion>7.3</LangVersion>
1818
</PropertyGroup>
19-
19+
2020
<PropertyGroup>
2121
<NoWarn>612</NoWarn>
2222
</PropertyGroup>

commercetools.Sdk/commercetools.Sdk.HttpApi.Domain/Exceptions/ForbiddenException.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
namespace commercetools.Sdk.HttpApi.Domain.Exceptions
22
{
33
/// <summary>
4-
/// The commercetools platform received the request but refuses to process it, typically to insufficient rights.
4+
/// Composable Commerce received the request but refuses to process it, typically to insufficient rights.
55
/// For example it happens if an access token has been received to view products but a request to the customers endpoint is requested.
66
/// </summary>
77
/// <seealso cref="commercetools.Sdk.HttpApi.Domain.Exceptions.ClientErrorException" />
88
public class ForbiddenException : ClientErrorException
99
{
1010
public override int StatusCode => 403;
11-
12-
public ForbiddenException()
11+
12+
public ForbiddenException()
1313
{
1414
}
1515
}

commercetools.Sdk/commercetools.Sdk.HttpApi.Domain/Exceptions/InvalidTokenException.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ namespace commercetools.Sdk.HttpApi.Domain.Exceptions
22
{
33
/// <summary>
44
/// Invalid token for request (401)
5-
/// Exception raised in case the access token is not valid for the used commercetools platform project.
5+
/// Exception raised in case the access token is not valid for the used Composable Commerce Project.
66
/// </summary>
77
/// <seealso cref="commercetools.Sdk.HttpApi.Domain.Exceptions.UnauthorizedException" />
88
public class InvalidTokenException : UnauthorizedException
99
{
1010
public override int StatusCode => 401;
11-
12-
public InvalidTokenException()
11+
12+
public InvalidTokenException()
1313
{
1414
}
1515
}

commercetools.Sdk/commercetools.Sdk.HttpApi.Domain/Exceptions/UnauthorizedException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace commercetools.Sdk.HttpApi.Domain.Exceptions
44
{
55
/// <summary>
6-
/// Unauthorized access to the commercetools platform with either invalid client credentials or tokens.
6+
/// Unauthorized access to Composable Commerce with either invalid client credentials or tokens.
77
/// Most likely the subclass exceptions InvalidTokenException will be thrown.
88
/// </summary>
99
/// <seealso cref="commercetools.Sdk.HttpApi.Domain.Exceptions.InvalidTokenException" />
@@ -13,7 +13,7 @@ public class UnauthorizedException : ClientErrorException
1313

1414
public UnauthorizedException()
1515
{
16-
16+
1717
}
1818
}
1919
}

commercetools.Sdk/commercetools.Sdk.HttpApi.Domain/commercetools.Sdk.HttpApi.Domain.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<authors>commercetools</authors>
77
<owners>commercetools</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>
9-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
9+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1010
<copyright>Copyright commercetools 2019</copyright>
1111
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1313
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1414
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1515
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
16-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
16+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1717
</PropertyGroup>
1818

1919
<ItemGroup>

commercetools.Sdk/commercetools.Sdk.HttpApi/commercetools.Sdk.HttpApi.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<authors>commercetools</authors>
88
<owners>commercetools</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
10+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1111
<copyright>Copyright commercetools 2019</copyright>
1212
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1313
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1414
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1515
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1616
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
17-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
17+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

commercetools.Sdk/commercetools.Sdk.Linq/commercetools.Sdk.Linq.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<authors>commercetools</authors>
88
<owners>commercetools</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
10+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1111
<copyright>Copyright commercetools 2019</copyright>
1212
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1313
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1414
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1515
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1616
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
17-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
17+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

commercetools.Sdk/commercetools.Sdk.NodaMoney/commercetools.Sdk.NodaMoney.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<authors>commercetools</authors>
88
<owners>commercetools</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
10+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1111
<copyright>Copyright commercetools 2019</copyright>
1212
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1313
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1414
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1515
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1616
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
17-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
17+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

commercetools.Sdk/commercetools.Sdk.Registration/commercetools.Sdk.Registration.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<authors>commercetools</authors>
88
<owners>commercetools</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
10+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1111
<copyright>Copyright commercetools 2019</copyright>
1212
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1313
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1414
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1515
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1616
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
17-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
17+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

commercetools.Sdk/commercetools.Sdk.Serialization/commercetools.Sdk.Serialization.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<authors>commercetools</authors>
77
<owners>commercetools</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>
9-
<description>The commercetools SDK allows developers to work effectively with the commercetools platform in their .NET applications by providing typesafe access to the commercetools HTTP API.</description>
9+
<description>The Composable Commerce SDK allows developers to work effectively by providing typesafe access to commercetools Composable Commerce in their .NET applications.</description>
1010
<copyright>Copyright commercetools 2019</copyright>
1111
<PackageProjectUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</PackageProjectUrl>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1313
<PackageIconUrl>https://raw.githubusercontent.com/commercetools/commercetools-dotnet-core-sdk/master/ct-logo.png</PackageIconUrl>
1414
<RepositoryUrl>https://github.com/commercetools/commercetools-dotnet-core-sdk</RepositoryUrl>
1515
<PackageReleaseNotes>Information about latest changes can be found at https://github.com/commercetools/commercetools-dotnet-core-sdk/blob/master/CHANGELOG.md</PackageReleaseNotes>
16-
<PackageTags>commercetools;dotnet-core;sdk</PackageTags>
16+
<PackageTags>commercetools;composable-commerce;dotnet-core;sdk</PackageTags>
1717
</PropertyGroup>
1818

1919
<ItemGroup>

0 commit comments

Comments
 (0)