make HOMAG API Gateway Client ready for Open Source
36e38f91
Christian Decker
committed
failed
79 changed files
settings.json
/.vscode/settings.json+11
/.vscode/settings.json
Add comment 1 Plus  {
Add comment 2 Plus   "cSpell.words": [
Add comment 3 Plus   "appsettings",
Add comment 4 Plus   "dotnet",
Add comment 5 Plus   "edgeband",
Add comment 6 Plus   "homag",
Add comment 7 Plus   "Homag",
Add comment 8 Plus   "HOMAG",
Add comment 9 Plus   "tapio"
Add comment 10 Plus   ]
Add comment 11 Plus  }
IOptimizationServices.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Interfaces/IOptimizationServices.cs+26
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Interfaces/IOptimizationServices.cs
Add comment 1 Plus  using System.IO;
Add comment 2 Plus  using System.Threading.Tasks;
Add comment 3 Plus  
Add comment 4 Plus  namespace HomagGroup.DigitalFactory.ApiGateway.Client.Interfaces
Add comment 5 Plus  {
Add comment 6 Plus   /// <summary>
Add comment 7 Plus   ///
Add comment 8 Plus   /// </summary>
Add comment 9 Plus   public interface IOptimizationServices
Add comment 10 Plus   {
Add comment 11 Plus   /// <summary>
Add comment 12 Plus   ///
Add comment 13 Plus   /// </summary>
Add comment 14 Plus   /// <param name="file"></param>
Add comment 15 Plus   /// <returns></returns>
Add comment 16 Plus   Task<ImportResult> IDImportAsync(Stream file);
Add comment 17 Plus  
Add comment 18 Plus   /// <summary>
Add comment 19 Plus   ///
Add comment 20 Plus   /// </summary>
Add comment 21 Plus   /// <param name="correlationId"></param>
Add comment 22 Plus   /// <returns></returns>
Add comment 23 Plus   Task<ImportDetails> IDGetImportStateAsync(string correlationId);
Add comment 24 Plus   }
Add comment 25 Plus  }
Add comment 26 Plus  
IProductionServices.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Interfaces/IProductionServices.cs+55
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Interfaces/IProductionServices.cs
Add comment 1 Plus  using System.IO;
Add comment 2 Plus  using System.Threading.Tasks;
Add comment 3 Plus  
Add comment 4 Plus  namespace HomagGroup.DigitalFactory.ApiGateway.Client.Interfaces
Add comment 5 Plus  {
Add comment 6 Plus   /// <summary>
Add comment 7 Plus   ///
Add comment 8 Plus   /// </summary>
Add comment 9 Plus   public interface IProductionServices
Add comment 10 Plus   {
Add comment 11 Plus   /// <summary>
Add comment 12 Plus   ///
Add comment 13 Plus   /// </summary>
Add comment 14 Plus   /// <param name="file"></param>
Add comment 15 Plus   /// <returns></returns>
Add comment 16 Plus   Task<ImportResult> PMImportAsync(Stream file);
Add comment 17 Plus  
Add comment 18 Plus   /// <summary>
Add comment 19 Plus   ///
Add comment 20 Plus   /// </summary>
Add comment 21 Plus   /// <param name="correlationId"></param>
Add comment 22 Plus   /// <returns></returns>
Add comment 23 Plus   Task<ImportDetails> PMGetImportStateAsync(string correlationId);
Add comment 24 Plus  
Add comment 25 Plus   /// <summary>
Add comment 26 Plus   /// Get available templates
Add comment 27 Plus   /// </summary>
Add comment 28 Plus   /// <returns></returns>
Add comment 29 Plus   Task<GetImportTemplatesResult> PMGetTemplatesAsync();
Add comment 30 Plus  
Add comment 31 Plus   /// <summary>
Add comment 32 Plus   /// Import production orders from file to a new customer order with existing import template
Add comment 33 Plus   /// </summary>
Add comment 34 Plus   /// <param name="importInfo"></param>
Add comment 35 Plus   /// <param name="templateId"></param>
Add comment 36 Plus   /// <param name="orderName"></param>
Add comment 37 Plus   /// <returns></returns>
Add comment 38 Plus   Task<ImportDetails> PMImportViaTemplateAsync(ImportFileInfo importInfo, string templateId, string orderName = null);
Add comment 39 Plus  
Add comment 40 Plus   /// <summary>
Add comment 41 Plus   /// Get available workplaces
Add comment 42 Plus   /// </summary>
Add comment 43 Plus   /// <returns></returns>
Add comment 44 Plus   Task<GetFeedbackWorkplacesResult> PMGetFeedbackWorkplaces();
Add comment 45 Plus  
Add comment 46 Plus   /// <summary>
Add comment 47 Plus   /// Add completed workplace feedback for specific production entities
Add comment 48 Plus   /// </summary>
Add comment 49 Plus   /// <param name="workplaceId">define workplace ID</param>
Add comment 50 Plus   /// <param name="feedbackRequest">define a feedback request</param>
Add comment 51 Plus   /// <returns></returns>
Add comment 52 Plus   Task<FeedbackResult> PMWorkplaceFeedback(string workplaceId, FeedbackRequest feedbackRequest);
Add comment 53 Plus   }
Add comment 54 Plus  }
Add comment 55 Plus  
logo.png
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Resources/logo.png
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Resources/logo.png
CommonServices.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/CommonServices.cs+54
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/CommonServices.cs
Add comment 1 Plus  using Newtonsoft.Json;
Add comment 2 Plus  using System;
Add comment 3 Plus  using System.Globalization;
Add comment 4 Plus  using System.Net.Http;
Add comment 5 Plus  using System.Net.Http.Headers;
Add comment 6 Plus  using System.Threading.Tasks;
Add comment 7 Plus  
Add comment 8 Plus  namespace HomagGroup.DigitalFactory.ApiGateway.Client.Services
Add comment 9 Plus  {
Add comment 10 Plus   /// <summary>
Add comment 11 Plus   ///
Add comment 12 Plus   /// </summary>
Add comment 13 Plus   public class CommonServices : ServiceBase, ICommonServices
Add comment 14 Plus   {
Add comment 15 Plus   /// <summary>
Add comment 16 Plus   ///
Add comment 17 Plus   /// </summary>
Add comment 18 Plus   /// <param name="httpClient"></param>
Add comment 19 Plus   public CommonServices(HttpClient httpClient) : base(httpClient)
Add comment 20 Plus   {
Add comment 21 Plus   }
Add comment 22 Plus  
Add comment 23 Plus   /// <summary>
Add comment 24 Plus   ///
Add comment 25 Plus   /// </summary>
Add comment 26 Plus   /// <returns></returns>
Add comment 27 Plus   public async Task<GatewayTokenInformation> GetTokenInformationAsync()
Add comment 28 Plus   {
Add comment 29 Plus   var request = new HttpRequestMessage { Method = HttpMethod.Get };
Add comment 30 Plus   var uri = $"{Prefix}common/tokenInformation";
Add comment 31 Plus   request.RequestUri = new Uri(uri, UriKind.Relative);
Add comment 32 Plus   request.Headers.AcceptLanguage.Clear();
Add comment 33 Plus   request.Headers.AcceptLanguage.Add(new StringWithQualityHeaderValue(CultureInfo.CurrentUICulture.Name));
Add comment 34 Plus   var response = await Client.SendAsync(request).ConfigureAwait(false);
Add comment 35 Plus   response.HandleDeprecatedMessages(request, ApiVersion, ThrowExceptionOnDeprecatedCalls, OnDeprecatedAction);
Add comment 36 Plus   response.EnsureSuccessStatusCodeWithDetails(request);
Add comment 37 Plus   var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Add comment 38 Plus   return JsonConvert.DeserializeObject<GatewayTokenInformation>(content, SerializerSettings.Default);
Add comment 39 Plus   }
Add comment 40 Plus   }
Add comment 41 Plus  
Add comment 42 Plus   /// <summary>
Add comment 43 Plus   ///
Add comment 44 Plus   /// </summary>
Add comment 45 Plus   public interface ICommonServices
Add comment 46 Plus   {
Add comment 47 Plus   /// <summary>
Add comment 48 Plus   ///
Add comment 49 Plus   /// </summary>
Add comment 50 Plus   /// <returns></returns>
Add comment 51 Plus   Task<GatewayTokenInformation> GetTokenInformationAsync();
Add comment 52 Plus   }
Add comment 53 Plus  }
Add comment 54 Plus  
HttpResponseMessageExtensions.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/HttpResponseMessageExtensions.cs+96
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/HttpResponseMessageExtensions.cs
Add comment 1 Plus  using Microsoft.Extensions.Logging;
Add comment 2 Plus  using System;
Add comment 3 Plus  using System.Linq;
Add comment 4 Plus  using System.Net;
Add comment 5 Plus  using System.Net.Http;
Add comment 6 Plus  using System.Threading.Tasks;
Add comment 7 Plus  
Add comment 8 Plus  namespace HomagGroup.DigitalFactory.ApiGateway.Client.Services
Add comment 9 Plus  {
Add comment 10 Plus   /// <summary>
Add comment 11 Plus   /// Extensions for response messages
Add comment 12 Plus   /// </summary>
Add comment 13 Plus   internal static class HttpResponseMessageExtensions
Add comment 14 Plus   {
Add comment 15 Plus   public static void EnsureSuccessStatusCodeWithDetails(this HttpResponseMessage response,
Add comment 16 Plus   HttpRequestMessage request)
Add comment 17 Plus   {
Add comment 18 Plus   EnsureSuccessStatusCodeWithDetails(response, request, null);
Add comment 19 Plus   }
Add comment 20 Plus  
Add comment 21 Plus   public static void EnsureSuccessStatusCodeWithDetails(this HttpResponseMessage response,
Add comment 22 Plus   HttpRequestMessage request, ILogger logger)
Add comment 23 Plus   {
Add comment 24 Plus   try
Add comment 25 Plus   {
Add comment 26 Plus   EnsureSuccessStatusCodeWithDetailsAsync(response, request, logger, null).Wait();
Add comment 27 Plus   }
Add comment 28 Plus   catch (AggregateException e)
Add comment 29 Plus   {
Add comment 30 Plus   if (e.InnerExceptions.Count == 1)
Add comment 31 Plus   {
Add comment 32 Plus   throw e.InnerExceptions[0];
Add comment 33 Plus   }
Add comment 34 Plus  
Add comment 35 Plus   throw;
Add comment 36 Plus   }
Add comment 37 Plus   }
Add comment 38 Plus  
Add comment 39 Plus   public static async Task EnsureSuccessStatusCodeWithDetailsAsync(this HttpResponseMessage response, HttpRequestMessage request,
Add comment 40 Plus   ILogger logger, Func<HttpStatusCode, string, Exception, Task<bool>> handleResponse)
Add comment 41 Plus   {
Add comment 42 Plus   if (request == null)
Add comment 43 Plus   {
Add comment 44 Plus   request = response.RequestMessage;
Add comment 45 Plus   }
Add comment 46 Plus  
Add comment 47 Plus   if (!response.IsSuccessStatusCode)
Add comment 48 Plus   {
Add comment 49 Plus   string resTxt = string.Empty;
Add comment 50 Plus   try
Add comment 51 Plus   {
Add comment 52 Plus   resTxt = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
Add comment 53 Plus   }
Add comment 54 Plus   catch
Add comment 55 Plus   {
Add comment 56 Plus   // If we can´t get the content, we throw the exception without content
Add comment 57 Plus   }
Add comment 58 Plus  
Add comment 59 Plus   var exp = new HttpRequestException(
Add comment 60 Plus   $"HTTP request '{request?.RequestUri}' failed with status code {response.StatusCode}{Environment.NewLine}Response:{Environment.NewLine}{response}{Environment.NewLine}Response-Body:{Environment.NewLine}{resTxt}{Environment.NewLine}Request:{Environment.NewLine}{request}");
Add comment 61 Plus   if (handleResponse != null)
Add comment 62 Plus   {
Add comment 63 Plus   if (await handleResponse.Invoke(response.StatusCode, resTxt, exp).ConfigureAwait(false))
Add comment 64 Plus   {
Add comment 65 Plus   return;
Add comment 66 Plus   }
Add comment 67 Plus   }
Add comment 68 Plus  
Add comment 69 Plus   logger?.LogError(exp, "Request failed", request?.RequestUri, response.StatusCode, resTxt);
Add comment 70 Plus   throw exp;
Add comment 71 Plus   }
Add comment 72 Plus   }
Add comment 73 Plus  
Add comment 74 Plus   public const string DeprecatedVersionHeaderKey = "api-deprecated-versions";
Add comment 75 Plus  
Add comment 76 Plus   /// <summary>
Add comment 77 Plus   /// This checks the result and calls the Action on deprecated messages; optionally it throws an exception
Add comment 78 Plus   /// </summary>
Add comment 79 Plus   public static void HandleDeprecatedMessages(this HttpResponseMessage response, HttpRequestMessage request, string currentApiVersion, bool throwExceptionOnDeprecatedCalls = false, Action<HttpRequestMessage, HttpResponseMessage> onDeprecatedAction = null)
Add comment 80 Plus   {
Add comment 81 Plus   if (!string.IsNullOrEmpty(currentApiVersion) && response.Headers.Contains(DeprecatedVersionHeaderKey))
Add comment 82 Plus   {
Add comment 83 Plus   var values = response.Headers.GetValues(DeprecatedVersionHeaderKey);
Add comment 84 Plus   if (values.Any(p => p.IndexOf(currentApiVersion, StringComparison.OrdinalIgnoreCase) >= 0))
Add comment 85 Plus   {
Add comment 86 Plus   onDeprecatedAction?.Invoke(request, response);
Add comment 87 Plus   if (throwExceptionOnDeprecatedCalls)
Add comment 88 Plus   {
Add comment 89 Plus   throw new InvalidOperationException($"API version '{currentApiVersion}' is marked as deprecated!");
Add comment 90 Plus   }
Add comment 91 Plus   }
Add comment 92 Plus   }
Add comment 93 Plus   }
Add comment 94 Plus   }
Add comment 95 Plus  }
Add comment 96 Plus  
OptimizationServices.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/OptimizationServices.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/OptimizationServices.cs
ProductionServices.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/ProductionServices.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/ProductionServices.cs
SerializerSettings.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/SerializerSettings.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/SerializerSettings.cs
ServiceBase.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/ServiceBase.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/ServiceBase.cs
VersionEntry.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/VersionEntry.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/VersionEntry.cs
VersionInformation.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/VersionInformation.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/Services/VersionInformation.cs
BoardInstance.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstance.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstance.cs
BoardInstanceCreateResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstanceCreateResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstanceCreateResult.cs
BoardInstanceFull.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstanceFull.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstanceFull.cs
BoardInstanceType.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstanceType.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardInstanceType.cs
BoardResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardResult.cs
BoardType.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardType.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/BoardType.cs
EdgeInstance.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/EdgeInstance.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/EdgeInstance.cs
EdgesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/EdgesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/EdgesResult.cs
FeedbackIdentification.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackIdentification.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackIdentification.cs
FeedbackRequest.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackRequest.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackRequest.cs
FeedbackResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackResult.cs
FeedbackResultDetails.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackResultDetails.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackResultDetails.cs
FeedbackState.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackState.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackState.cs
FeedbackWorkplace.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackWorkplace.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/FeedbackWorkplace.cs
GatewayActionGroup.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayActionGroup.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayActionGroup.cs
GatewayActionGroupEntry.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayActionGroupEntry.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayActionGroupEntry.cs
GatewayTokenInformation.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformation.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformation.cs
GetBoardsResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetBoardsResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetBoardsResult.cs
GetEdgesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetEdgesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetEdgesResult.cs
GetFeedbackWorkplacesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetFeedbackWorkplacesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetFeedbackWorkplacesResult.cs
GetImportTemplatesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetImportTemplatesResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GetImportTemplatesResult.cs
HomagGroup.DigitalFactory.ApiGateway.Client.csproj
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/HomagGroup.DigitalFactory.ApiGateway.Client.csproj
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/HomagGroup.DigitalFactory.ApiGateway.Client.csproj
ImportDetails.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportDetails.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportDetails.cs
ImportFile.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportFile.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportFile.cs
ImportFileInfo.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportFileInfo.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportFileInfo.cs
ImportResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportResult.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportResult.cs
ImportState.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportState.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportState.cs
ImportTemplate.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportTemplate.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ImportTemplate.cs
MaterialImage.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/MaterialImage.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/MaterialImage.cs
ProblemException.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ProblemException.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/ProblemException.cs
TolerantEnumConverter.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/TolerantEnumConverter.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/TolerantEnumConverter.cs
WorkplaceFeedback.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/WorkplaceFeedback.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/WorkplaceFeedback.cs
puml_ctx.png
/Documentation/assets/puml_ctx.png
/Documentation/assets/puml_ctx.png
puml_wf.png
/Documentation/assets/puml_wf.png
/Documentation/assets/puml_wf.png
tapio_sat01.png
/Documentation/assets/tapio_sat01.png
/Documentation/assets/tapio_sat01.png
tapio_sat02.png
/Documentation/assets/tapio_sat02.png
/Documentation/assets/tapio_sat02.png
tapio_sat03.png
/Documentation/assets/tapio_sat03.png
/Documentation/assets/tapio_sat03.png
tapio_sat04.png
/Documentation/assets/tapio_sat04.png
/Documentation/assets/tapio_sat04.png
README.md
/Documentation/README.md
/Documentation/README.md
project_xml.png
/Samples/assets/project_xml.png
/Samples/assets/project_xml.png
appsettings.json
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/appsettings.json
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/appsettings.json
HomagGroup.ApiGateway.Client.Samples.csproj
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/HomagGroup.ApiGateway.Client.Samples.csproj
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/HomagGroup.ApiGateway.Client.Samples.csproj
Renamed from
/Samples/HomagGroup.ApiGateway.Client.Samples/HomagGroup.ApiGateway.Client.Samples.csproj
PMGetFeedbackWorkplacesTest.cs
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/PMGetFeedbackWorkplacesTest.cs
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/PMGetFeedbackWorkplacesTest.cs
PMImportViaTemplateAsyncTest.cs
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/PMImportViaTemplateAsyncTest.cs
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/PMImportViaTemplateAsyncTest.cs
vsts.runsettings
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/vsts.runsettings
/Samples/csharp/HomagGroup.ApiGateway.Client.Samples/vsts.runsettings
Renamed from
/Samples/HomagGroup.ApiGateway.Client.Samples/vsts.runsettings
The file content is identical.
nuget.config
/Samples/csharp/nuget.config
/Samples/csharp/nuget.config
cutting_project.zip
/Samples/DefaultImport/cutting_project.zip
/Samples/DefaultImport/cutting_project.zip
HomagProject.zip
/Samples/DefaultImport/HomagProject.zip
/Samples/DefaultImport/HomagProject.zip
HomagProject2.zip
/Samples/DefaultImport/HomagProject2.zip
/Samples/DefaultImport/HomagProject2.zip
ImportExport.xsd
/Samples/DefaultImport/ImportExport.xsd
/Samples/DefaultImport/ImportExport.xsd
nesting_project.zip
/Samples/DefaultImport/nesting_project.zip
/Samples/DefaultImport/nesting_project.zip
project.xml
/Samples/DefaultImport/project.xml
/Samples/DefaultImport/project.xml
SmallTest.zip
/Samples/DefaultImport/SmallTest.zip
/Samples/DefaultImport/SmallTest.zip
TestImport.csv
/Samples/DefaultImport/TestImport.csv
/Samples/DefaultImport/TestImport.csv
Renamed from
/Samples/HomagGroup.ApiGateway.Client.Samples/TestData/TestImport.csv
PMImportSamples.cs
/Samples/HomagGroup.ApiGateway.Client.Samples/PMImportSamples.cs
/Samples/HomagGroup.ApiGateway.Client.Samples/PMImportSamples.cs
API-Gateway-PRD.postman_environment.json
/Samples/postman/API-Gateway-PRD.postman_environment.json
/Samples/postman/API-Gateway-PRD.postman_environment.json
API-Gateway-PRE.postman_environment.json
/Samples/postman/API-Gateway-PRE.postman_environment.json
/Samples/postman/API-Gateway-PRE.postman_environment.json
HOMAG-API-Gateway.postman_collection.json
/Samples/postman/HOMAG-API-Gateway.postman_collection.json
/Samples/postman/HOMAG-API-Gateway.postman_collection.json
ExampleGetEdges.ps1
/Samples/powershell/ExampleGetEdges.ps1
/Samples/powershell/ExampleGetEdges.ps1
ExamplePmImport.ps1
/Samples/powershell/ExamplePmImport.ps1
/Samples/powershell/ExamplePmImport.ps1
ImportSpecification.md
/Samples/ImportSpecification.md
/Samples/ImportSpecification.md
README.md
/Samples/README.md
/Samples/README.md
.gitignore
/.gitignore
/.gitignore
azure-pipelines.yml
/azure-pipelines.yml
/azure-pipelines.yml
HISTORY.md
/HISTORY.md
/HISTORY.md
HomagGroup.ApiGateway.Client.sln
/HomagGroup.ApiGateway.Client.sln
/HomagGroup.ApiGateway.Client.sln
Renamed from
/Samples/HomagGroup.ApiGateway.Client.Samples.sln
README.md
/README.md
/README.md