Skip to content

Commit

Permalink
Regenerates API Bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
lilt-infra-service authored and github-actions[bot] committed Nov 11, 2024
1 parent 6e3f976 commit 1a93de7
Show file tree
Hide file tree
Showing 77 changed files with 2,098 additions and 419 deletions.
2 changes: 2 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ docs/LanguagesApi.md
docs/LanguagesResponse.md
docs/LiltCreateContent.md
docs/LiltCreateContentPreferences.md
docs/LiltCreateContentRequest.md
docs/LiltCreateContentTemplateParams.md
docs/MemoriesApi.md
docs/Memory.md
Expand Down Expand Up @@ -103,6 +104,7 @@ src/main/java/com/lilt/client/model/LanguagePair.java
src/main/java/com/lilt/client/model/LanguagesResponse.java
src/main/java/com/lilt/client/model/LiltCreateContent.java
src/main/java/com/lilt/client/model/LiltCreateContentPreferences.java
src/main/java/com/lilt/client/model/LiltCreateContentRequest.java
src/main/java/com/lilt/client/model/LiltCreateContentTemplateParams.java
src/main/java/com/lilt/client/model/Memory.java
src/main/java/com/lilt/client/model/MemoryCreateParameters.java
Expand Down
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Lilt REST API
- API version: v3.0
- Build date: 2024-10-14T17:01:14.551Z[GMT]
- Build date: 2024-11-11T21:15:51.538Z[GMT]

Lilt REST API Support: https://lilt.atlassian.net/servicedesk/customer/portals
The Lilt REST API enables programmatic access to the full-range of Lilt backend services including:
Expand Down Expand Up @@ -62,7 +62,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-java-client</artifactId>
<version>3.0.0</version>
<version>v3.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -72,7 +72,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "org.openapitools:openapi-java-client:3.0.0"
compile "org.openapitools:openapi-java-client:v3.0"
```

### Others
Expand All @@ -85,7 +85,7 @@ mvn clean package

Then manually install the following JARs:

* `target/openapi-java-client-3.0.0.jar`
* `target/openapi-java-client-v3.0.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down Expand Up @@ -120,8 +120,10 @@ public class Example {

CreateApi apiInstance = new CreateApi(defaultClient);
Integer contentId = 56; // Integer | The content ID.
Boolean xIsAutomated = true; // Boolean | A boolean value that indicates whether the request is automated or not.
Boolean xIsExpectedError = true; // Boolean | A boolean value that indicates whether the request is expected to return an error or not.
try {
InlineResponse200 result = apiInstance.deleteLiltCreateContent(contentId);
InlineResponse200 result = apiInstance.deleteLiltCreateContent(contentId, xIsAutomated, xIsExpectedError);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CreateApi#deleteLiltCreateContent");
Expand Down Expand Up @@ -162,7 +164,7 @@ Class | Method | HTTP request | Description
*JobsApi* | [**createJob**](docs/JobsApi.md#createJob) | **POST** /v2/jobs | Create a Job
*JobsApi* | [**deleteJob**](docs/JobsApi.md#deleteJob) | **DELETE** /v2/jobs/{jobId} | Delete a Job
*JobsApi* | [**deliverJob**](docs/JobsApi.md#deliverJob) | **POST** /v2/jobs/{jobId}/deliver | Deliver a Job
*JobsApi* | [**downloadJob**](docs/JobsApi.md#downloadJob) | **GET** /v2/jobs/{jobId}/downlod | Download a Job
*JobsApi* | [**downloadJob**](docs/JobsApi.md#downloadJob) | **GET** /v2/jobs/{jobId}/download | Download a Job
*JobsApi* | [**exportJob**](docs/JobsApi.md#exportJob) | **GET** /v2/jobs/{jobId}/export | Export a Job
*JobsApi* | [**getJob**](docs/JobsApi.md#getJob) | **GET** /v2/jobs/{jobId} | Retrieve a Job
*JobsApi* | [**getJobLeverageStats**](docs/JobsApi.md#getJobLeverageStats) | **POST** /v2/jobs/{jobId}/stats | Retrieve Job Leverage Stats
Expand Down Expand Up @@ -213,6 +215,7 @@ Class | Method | HTTP request | Description
- [LanguagesResponse](docs/LanguagesResponse.md)
- [LiltCreateContent](docs/LiltCreateContent.md)
- [LiltCreateContentPreferences](docs/LiltCreateContentPreferences.md)
- [LiltCreateContentRequest](docs/LiltCreateContentRequest.md)
- [LiltCreateContentTemplateParams](docs/LiltCreateContentTemplateParams.md)
- [Memory](docs/Memory.md)
- [MemoryCreateParameters](docs/MemoryCreateParameters.md)
Expand Down
Loading

0 comments on commit 1a93de7

Please sign in to comment.