@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040<dependency >
4141 <groupId >com.github.freeclimbapi</groupId >
4242 <artifactId >freeclimb-java-client</artifactId >
43- <version >5.7 .0</version >
43+ <version >5.8 .0</version >
4444 <scope >compile</scope >
4545</dependency >
4646```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656 }
5757
5858 dependencies {
59- implementation "com.github.freeclimbapi:freeclimb-java-client:5.7 .0"
59+ implementation "com.github.freeclimbapi:freeclimb-java-client:5.8 .0"
6060 implementation("com.squareup.okhttp3:okhttp:4.9.3")
6161 implementation("com.squareup.okhttp3:logging-interceptor:4.9.3")
6262 }
@@ -72,7 +72,7 @@ mvn clean package
7272
7373Then manually install the following JARs:
7474
75- * ` target/freeclimb-java-client-5.7 .0.jar `
75+ * ` target/freeclimb-java-client-5.8 .0.jar `
7676* ` target/lib/*.jar `
7777
7878## Getting Started
@@ -147,6 +147,7 @@ Class | Method | HTTP request | Description
147147*DefaultApi* | [**createAConference**](docs/DefaultApi.md#createAConference) | **POST** /Accounts/{accountId}/Conferences | Create a Conference
148148*DefaultApi* | [**createAQueue**](docs/DefaultApi.md#createAQueue) | **POST** /Accounts/{accountId}/Queues | Create a Queue
149149*DefaultApi* | [**createAnApplication**](docs/DefaultApi.md#createAnApplication) | **POST** /Accounts/{accountId}/Applications | Create an application
150+ *DefaultApi* | [**createKnowledgeBaseCompletion**](docs/DefaultApi.md#createKnowledgeBaseCompletion) | **POST** /Accounts/{accountId}/KnowledgeBases/{knowledgeBaseId}/Completion | Query the knowledge base
150151*DefaultApi* | [**deleteARecording**](docs/DefaultApi.md#deleteARecording) | **DELETE** /Accounts/{accountId}/Recordings/{recordingId} | Delete a Recording
151152*DefaultApi* | [**deleteAnApplication**](docs/DefaultApi.md#deleteAnApplication) | **DELETE** /Accounts/{accountId}/Applications/{applicationId} | Delete an application
152153*DefaultApi* | [**deleteAnIncomingNumber**](docs/DefaultApi.md#deleteAnIncomingNumber) | **DELETE** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Delete an Incoming Number
@@ -227,6 +228,8 @@ Class | Method | HTTP request | Description
227228 - [CallResultAllOf](docs/CallResultAllOf.md)
228229 - [CallStatus](docs/CallStatus.md)
229230 - [Capabilities](docs/Capabilities.md)
231+ - [CompletionRequest](docs/CompletionRequest.md)
232+ - [CompletionResult](docs/CompletionResult.md)
230233 - [ConferenceList](docs/ConferenceList.md)
231234 - [ConferenceListAllOf](docs/ConferenceListAllOf.md)
232235 - [ConferenceParticipantList](docs/ConferenceParticipantList.md)
0 commit comments