From 446ffb0f55cb4c25e50829287c509861af0bf97c Mon Sep 17 00:00:00 2001 From: Artur Pietrzyk Date: Fri, 6 May 2022 02:26:50 +0200 Subject: [PATCH] rename oeml -> ems --- README.md | 6 ++++-- .../csharp-netcore}/CoinAPI.OEML.FixClient/.gitignore | 0 .../CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.csproj | 0 .../CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.sln | 0 .../csharp-netcore}/CoinAPI.OEML.FixClient/ESymbolSource.cs | 0 .../csharp-netcore}/CoinAPI.OEML.FixClient/FIX/FIX44.xml | 0 .../csharp-netcore}/CoinAPI.OEML.FixClient/FIX/FIX50.xml | 0 .../csharp-netcore}/CoinAPI.OEML.FixClient/FIX/FIXT11.xml | 0 .../csharp-netcore}/CoinAPI.OEML.FixClient/FixSettings.cfg | 0 .../CoinAPI.OEML.FixClient/OmsFix44Client.cs | 0 .../CoinAPI.OEML.FixClient/OmsFix50Client.cs | 0 .../csharp-netcore}/CoinAPI.OEML.FixClient/Program.cs | 0 {oeml-fix => ems-gateway-fix}/spec/FIX44.xml | 0 {oeml-fix => ems-gateway-fix}/spec/FIX50.xml | 0 {oeml-fix => ems-gateway-fix}/spec/FIXT11.xml | 0 {oeml-fix => ems-gateway-fix}/spec/README.md | 0 16 files changed, 4 insertions(+), 2 deletions(-) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/.gitignore (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.csproj (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.sln (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/ESymbolSource.cs (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/FIX/FIX44.xml (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/FIX/FIX50.xml (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/FIX/FIXT11.xml (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/FixSettings.cfg (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/OmsFix44Client.cs (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/OmsFix50Client.cs (100%) rename {oeml-fix => ems-gateway-fix/csharp-netcore}/CoinAPI.OEML.FixClient/Program.cs (100%) rename {oeml-fix => ems-gateway-fix}/spec/FIX44.xml (100%) rename {oeml-fix => ems-gateway-fix}/spec/FIX50.xml (100%) rename {oeml-fix => ems-gateway-fix}/spec/FIXT11.xml (100%) rename {oeml-fix => ems-gateway-fix}/spec/README.md (100%) diff --git a/README.md b/README.md index 8695520574..daf07d2637 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,10 @@ Welcome to the CoinAPI SDK. This repository contain SDK for our API documented a Directory | Description | --- | --- | -data-sdk | SDK for CoinAPI Market Data API -oeml-sdk | SDK for CoinAPI OEML API (Order and Execution Management Layer) +data-api | SDK for CoinAPI Market Data API +ems-cloud-mgmt-rest-sdk | SDK for CoinAPI EMS Managed Cloud REST API (Execution Management System API) +ems-gateway-rest-sdk | SDK for CoinAPI EMS REST API (Execution Management System API) +ems-gateway-fix | SDK for CoinAPI EMS FIX API (Execution Management System API) cryptotick-samples | Examples related to processing CryptoTick GZIP+CSV flat files ## Package managers coverage diff --git a/oeml-fix/CoinAPI.OEML.FixClient/.gitignore b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/.gitignore similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/.gitignore rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/.gitignore diff --git a/oeml-fix/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.csproj b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.csproj similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.csproj rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.csproj diff --git a/oeml-fix/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.sln b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.sln similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.sln rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/CoinAPI.OEML.FixClient.sln diff --git a/oeml-fix/CoinAPI.OEML.FixClient/ESymbolSource.cs b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/ESymbolSource.cs similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/ESymbolSource.cs rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/ESymbolSource.cs diff --git a/oeml-fix/CoinAPI.OEML.FixClient/FIX/FIX44.xml b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FIX/FIX44.xml similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/FIX/FIX44.xml rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FIX/FIX44.xml diff --git a/oeml-fix/CoinAPI.OEML.FixClient/FIX/FIX50.xml b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FIX/FIX50.xml similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/FIX/FIX50.xml rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FIX/FIX50.xml diff --git a/oeml-fix/CoinAPI.OEML.FixClient/FIX/FIXT11.xml b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FIX/FIXT11.xml similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/FIX/FIXT11.xml rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FIX/FIXT11.xml diff --git a/oeml-fix/CoinAPI.OEML.FixClient/FixSettings.cfg b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FixSettings.cfg similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/FixSettings.cfg rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/FixSettings.cfg diff --git a/oeml-fix/CoinAPI.OEML.FixClient/OmsFix44Client.cs b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/OmsFix44Client.cs similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/OmsFix44Client.cs rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/OmsFix44Client.cs diff --git a/oeml-fix/CoinAPI.OEML.FixClient/OmsFix50Client.cs b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/OmsFix50Client.cs similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/OmsFix50Client.cs rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/OmsFix50Client.cs diff --git a/oeml-fix/CoinAPI.OEML.FixClient/Program.cs b/ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/Program.cs similarity index 100% rename from oeml-fix/CoinAPI.OEML.FixClient/Program.cs rename to ems-gateway-fix/csharp-netcore/CoinAPI.OEML.FixClient/Program.cs diff --git a/oeml-fix/spec/FIX44.xml b/ems-gateway-fix/spec/FIX44.xml similarity index 100% rename from oeml-fix/spec/FIX44.xml rename to ems-gateway-fix/spec/FIX44.xml diff --git a/oeml-fix/spec/FIX50.xml b/ems-gateway-fix/spec/FIX50.xml similarity index 100% rename from oeml-fix/spec/FIX50.xml rename to ems-gateway-fix/spec/FIX50.xml diff --git a/oeml-fix/spec/FIXT11.xml b/ems-gateway-fix/spec/FIXT11.xml similarity index 100% rename from oeml-fix/spec/FIXT11.xml rename to ems-gateway-fix/spec/FIXT11.xml diff --git a/oeml-fix/spec/README.md b/ems-gateway-fix/spec/README.md similarity index 100% rename from oeml-fix/spec/README.md rename to ems-gateway-fix/spec/README.md