Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ce-nistal committed Jul 18, 2024
1 parent dad2f36 commit f34436c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Apps.XTM/Actions/LqaActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Apps.XTM.Models.Request;
using Apps.XTM.Models.Response;
using Apps.XTM.Models.Response.Customers;
using Blackbird.Applications.Sdk.Common;
using Blackbird.Applications.Sdk.Common.Actions;
using Blackbird.Applications.Sdk.Common.Invocation;
using DocumentFormat.OpenXml.Bibliography;
Expand All @@ -23,7 +24,7 @@ public LqaActions(InvocationContext invocationContext) : base(invocationContext)
}

[Action("Search LQA reports", Description = "Define criteria to search LQA reports")]
public async Task<List<LqaResponse>> SearchLqa(LQARequest input)
public async Task<List<LqaResponse>> SearchLqa([ActionParameter] LQARequest input)
{
var Params = new List<string>();
if (input.DateFrom is not null) Params.Add($"completeDateFrom={input.DateFrom:yyyy-MM-dd}");
Expand Down
2 changes: 1 addition & 1 deletion Apps.XTM/Apps.XTM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Product>XTM</Product>
<Version>3.2.0</Version>
<Version>3.2.1</Version>
<Description>Translation management system that centralizes localization assets and enables fast, accurate translation and deployment of content tailored to any audience in any territory</Description>
<AssemblyName>Apps.XTM</AssemblyName>
<LangVersion>12</LangVersion>
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ Before you can connect you need to make sure that:
- **Delete project**
- **Get project estimates**

### LQA

- **Search LQA reports** Define the criteria to fetch the LQA reports you need. Optional parameters include:
- Date from
- Date to
- Target languages
- LQA type

### Files

- **Download source files**
Expand Down Expand Up @@ -87,7 +95,6 @@ Before you can connect you need to make sure that:

The current implementation covers the basic actions. However, in the future we can also support:

- Project LQA
- Project analytics
- Custom fields
- Jobs
Expand Down

0 comments on commit f34436c

Please sign in to comment.