Skip to content

Commit 3c94812

Browse files
committed
Update changelog & version
1 parent b68877b commit 3c94812

7 files changed

Lines changed: 41 additions & 32 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99

1010
None
1111

12+
<a name="6.3.0"></a>
13+
14+
## [6.3.0] - 2025-10-21
15+
16+
### Added
17+
18+
- Add models for new TTS models and engine setup
19+
- Add models and default api methods for Blob API
20+
1221
<a name="6.2.0"></a>
1322

1423
## [6.2.0] - 2025-09-24

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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>6.2.0</version>
43+
<version>6.3.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:6.2.0"
59+
implementation "com.github.freeclimbapi:freeclimb-java-client:6.3.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

7373
Then manually install the following JARs:
7474

75-
* `target/freeclimb-java-client-6.2.0.jar`
75+
* `target/freeclimb-java-client-6.3.0.jar`
7676
* `target/lib/*.jar`
7777

7878
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.github.freeclimbapi'
7-
version = '6.2.0'
7+
version = '6.3.0'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.github.freeclimbapi",
44
name := "freeclimb-java-client",
5-
version := "6.2.0",
5+
version := "6.3.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>freeclimb-java-client</artifactId>
66
<packaging>jar</packaging>
77
<name>freeclimb-java-client</name>
8-
<version>6.2.0</version>
8+
<version>6.3.0</version>
99
<url>https://github.com/freeclimbapi/java-sdk</url>
1010
<description>FreeClimb Java Client</description>
1111
<scm>

src/main/java/com/github/freeclimbapi/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private void init() {
121121
json = new JSON();
122122

123123
// Set default User-Agent.
124-
setUserAgent("OpenAPI-Generator/6.2.0/java");
124+
setUserAgent("OpenAPI-Generator/6.3.0/java");
125125

126126
authentications = new HashMap<String, Authentication>();
127127
}

src/test/java/com/github/freeclimbapi/api/DefaultApiTest.java

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,7 @@ public void filterLogsGetNextPageTest() throws ApiException {
12671267
"/Accounts/{accountId}/Logs"
12681268
.replaceAll(
12691269
"\\{" + "accountId" + "\\}",
1270-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1270+
"AC0123456789abcdefABCDEF0123456789abcdef00");
12711271
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
12721272
LogList nextPageResponse = this.apiInstance.getNextPage(response);
12731273
assertEquals(nextPageResponse.getClass(), LogList.class);
@@ -1286,7 +1286,7 @@ public void getTenDLCSmsBrandsGetNextPageTest() throws ApiException {
12861286
"/Accounts/{accountId}/Messages/10DLC/Brands"
12871287
.replaceAll(
12881288
"\\{" + "accountId" + "\\}",
1289-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1289+
"AC0123456789abcdefABCDEF0123456789abcdef00");
12901290
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
12911291
SMSTenDLCBrandsListResult nextPageResponse = this.apiInstance.getNextPage(response);
12921292
assertEquals(nextPageResponse.getClass(), SMSTenDLCBrandsListResult.class);
@@ -1307,7 +1307,7 @@ public void getTenDLCSmsCampaignsGetNextPageTest() throws ApiException {
13071307
"/Accounts/{accountId}/Messages/10DLC/Campaigns"
13081308
.replaceAll(
13091309
"\\{" + "accountId" + "\\}",
1310-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1310+
"AC0123456789abcdefABCDEF0123456789abcdef00");
13111311
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
13121312
SMSTenDLCCampaignsListResult nextPageResponse = this.apiInstance.getNextPage(response);
13131313
assertEquals(nextPageResponse.getClass(), SMSTenDLCCampaignsListResult.class);
@@ -1329,7 +1329,7 @@ public void getTenDLCSmsPartnerCampaignsGetNextPageTest() throws ApiException {
13291329
"/Accounts/{accountId}/Messages/10DLC/PartnerCampaigns"
13301330
.replaceAll(
13311331
"\\{" + "accountId" + "\\}",
1332-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1332+
"AC0123456789abcdefABCDEF0123456789abcdef00");
13331333
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
13341334
SMSTenDLCPartnerCampaignsListResult nextPageResponse =
13351335
this.apiInstance.getNextPage(response);
@@ -1349,7 +1349,7 @@ public void getTollFreeSmsCampaignsGetNextPageTest() throws ApiException {
13491349
"/Accounts/{accountId}/Messages/TollFree/Campaigns"
13501350
.replaceAll(
13511351
"\\{" + "accountId" + "\\}",
1352-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1352+
"AC0123456789abcdefABCDEF0123456789abcdef00");
13531353
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
13541354
SMSTollFreeCampaignsListResult nextPageResponse = this.apiInstance.getNextPage(response);
13551355
assertEquals(nextPageResponse.getClass(), SMSTollFreeCampaignsListResult.class);
@@ -1370,7 +1370,7 @@ public void listActiveQueuesGetNextPageTest() throws ApiException {
13701370
"/Accounts/{accountId}/Queues"
13711371
.replaceAll(
13721372
"\\{" + "accountId" + "\\}",
1373-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1373+
"AC0123456789abcdefABCDEF0123456789abcdef00");
13741374
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
13751375
QueueList nextPageResponse = this.apiInstance.getNextPage(response);
13761376
assertEquals(nextPageResponse.getClass(), QueueList.class);
@@ -1389,7 +1389,7 @@ public void listAllAccountLogsGetNextPageTest() throws ApiException {
13891389
"/Accounts/{accountId}/Logs"
13901390
.replaceAll(
13911391
"\\{" + "accountId" + "\\}",
1392-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1392+
"AC0123456789abcdefABCDEF0123456789abcdef00");
13931393
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
13941394
LogList nextPageResponse = this.apiInstance.getNextPage(response);
13951395
assertEquals(nextPageResponse.getClass(), LogList.class);
@@ -1410,7 +1410,7 @@ public void listApplicationsGetNextPageTest() throws ApiException {
14101410
"/Accounts/{accountId}/Applications"
14111411
.replaceAll(
14121412
"\\{" + "accountId" + "\\}",
1413-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1413+
"AC0123456789abcdefABCDEF0123456789abcdef00");
14141414
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
14151415
ApplicationList nextPageResponse = this.apiInstance.getNextPage(response);
14161416
assertEquals(nextPageResponse.getClass(), ApplicationList.class);
@@ -1482,7 +1482,7 @@ public void listBlobsGetNextPageTest() throws ApiException {
14821482
"/Accounts/{accountId}/Blobs"
14831483
.replaceAll(
14841484
"\\{" + "accountId" + "\\}",
1485-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1485+
"AC0123456789abcdefABCDEF0123456789abcdef00");
14861486
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
14871487
BlobListResponse nextPageResponse = this.apiInstance.getNextPage(response);
14881488
assertEquals(nextPageResponse.getClass(), BlobListResponse.class);
@@ -1503,10 +1503,10 @@ public void listCallLogsGetNextPageTest() throws ApiException {
15031503
"/Accounts/{accountId}/Calls/{callId}/Logs"
15041504
.replaceAll(
15051505
"\\{" + "accountId" + "\\}",
1506-
"AC2d721074c7265c419cf76a82722854a3c0d595be")
1506+
"AC0123456789abcdefABCDEF0123456789abcdef00")
15071507
.replaceAll(
15081508
"\\{" + "callId" + "\\}",
1509-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1509+
"AC0123456789abcdefABCDEF0123456789abcdef00");
15101510
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
15111511
LogList nextPageResponse = this.apiInstance.getNextPage(response);
15121512
assertEquals(nextPageResponse.getClass(), LogList.class);
@@ -1529,10 +1529,10 @@ public void listCallRecordingsGetNextPageTest() throws ApiException {
15291529
"/Accounts/{accountId}/Calls/{callId}/Recordings"
15301530
.replaceAll(
15311531
"\\{" + "accountId" + "\\}",
1532-
"AC2d721074c7265c419cf76a82722854a3c0d595be")
1532+
"AC0123456789abcdefABCDEF0123456789abcdef00")
15331533
.replaceAll(
15341534
"\\{" + "callId" + "\\}",
1535-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1535+
"AC0123456789abcdefABCDEF0123456789abcdef00");
15361536
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
15371537
RecordingList nextPageResponse = this.apiInstance.getNextPage(response);
15381538
assertEquals(nextPageResponse.getClass(), RecordingList.class);
@@ -1582,7 +1582,7 @@ public void listCallsGetNextPageTest() throws ApiException {
15821582
"/Accounts/{accountId}/Calls"
15831583
.replaceAll(
15841584
"\\{" + "accountId" + "\\}",
1585-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1585+
"AC0123456789abcdefABCDEF0123456789abcdef00");
15861586
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
15871587
CallList nextPageResponse = this.apiInstance.getNextPage(response);
15881588
assertEquals(nextPageResponse.getClass(), CallList.class);
@@ -1608,10 +1608,10 @@ public void listConferenceRecordingsGetNextPageTest() throws ApiException {
16081608
"/Accounts/{accountId}/Conferences/{conferenceId}/Recordings"
16091609
.replaceAll(
16101610
"\\{" + "accountId" + "\\}",
1611-
"AC2d721074c7265c419cf76a82722854a3c0d595be")
1611+
"AC0123456789abcdefABCDEF0123456789abcdef00")
16121612
.replaceAll(
16131613
"\\{" + "conferenceId" + "\\}",
1614-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1614+
"AC0123456789abcdefABCDEF0123456789abcdef00");
16151615
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
16161616
RecordingList nextPageResponse = this.apiInstance.getNextPage(response);
16171617
assertEquals(nextPageResponse.getClass(), RecordingList.class);
@@ -1639,7 +1639,7 @@ public void listConferencesGetNextPageTest() throws ApiException {
16391639
"/Accounts/{accountId}/Conferences"
16401640
.replaceAll(
16411641
"\\{" + "accountId" + "\\}",
1642-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1642+
"AC0123456789abcdefABCDEF0123456789abcdef00");
16431643
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
16441644
ConferenceList nextPageResponse = this.apiInstance.getNextPage(response);
16451645
assertEquals(nextPageResponse.getClass(), ConferenceList.class);
@@ -1662,7 +1662,7 @@ public void listExportsGetNextPageTest() throws ApiException {
16621662
"/Accounts/{accountId}/Exports"
16631663
.replaceAll(
16641664
"\\{" + "accountId" + "\\}",
1665-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1665+
"AC0123456789abcdefABCDEF0123456789abcdef00");
16661666
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
16671667
ExportList nextPageResponse = this.apiInstance.getNextPage(response);
16681668
assertEquals(nextPageResponse.getClass(), ExportList.class);
@@ -1724,7 +1724,7 @@ public void listIncomingNumbersGetNextPageTest() throws ApiException {
17241724
"/Accounts/{accountId}/IncomingPhoneNumbers"
17251725
.replaceAll(
17261726
"\\{" + "accountId" + "\\}",
1727-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1727+
"AC0123456789abcdefABCDEF0123456789abcdef00");
17281728
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
17291729
IncomingNumberList nextPageResponse = this.apiInstance.getNextPage(response);
17301730
assertEquals(nextPageResponse.getClass(), IncomingNumberList.class);
@@ -1745,10 +1745,10 @@ public void listMembersGetNextPageTest() throws ApiException {
17451745
"/Accounts/{accountId}/Queues/{queueId}/Members"
17461746
.replaceAll(
17471747
"\\{" + "accountId" + "\\}",
1748-
"AC2d721074c7265c419cf76a82722854a3c0d595be")
1748+
"AC0123456789abcdefABCDEF0123456789abcdef00")
17491749
.replaceAll(
17501750
"\\{" + "queueId" + "\\}",
1751-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1751+
"AC0123456789abcdefABCDEF0123456789abcdef00");
17521752
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
17531753
QueueMemberList nextPageResponse = this.apiInstance.getNextPage(response);
17541754
assertEquals(nextPageResponse.getClass(), QueueMemberList.class);
@@ -1776,10 +1776,10 @@ public void listParticipantsGetNextPageTest() throws ApiException {
17761776
"/Accounts/{accountId}/Conferences/{conferenceId}/Participants"
17771777
.replaceAll(
17781778
"\\{" + "accountId" + "\\}",
1779-
"AC2d721074c7265c419cf76a82722854a3c0d595be")
1779+
"AC0123456789abcdefABCDEF0123456789abcdef00")
17801780
.replaceAll(
17811781
"\\{" + "conferenceId" + "\\}",
1782-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1782+
"AC0123456789abcdefABCDEF0123456789abcdef00");
17831783
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
17841784
ConferenceParticipantList nextPageResponse = this.apiInstance.getNextPage(response);
17851785
assertEquals(nextPageResponse.getClass(), ConferenceParticipantList.class);
@@ -1804,7 +1804,7 @@ public void listRecordingsGetNextPageTest() throws ApiException {
18041804
"/Accounts/{accountId}/Recordings"
18051805
.replaceAll(
18061806
"\\{" + "accountId" + "\\}",
1807-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1807+
"AC0123456789abcdefABCDEF0123456789abcdef00");
18081808
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
18091809
RecordingList nextPageResponse = this.apiInstance.getNextPage(response);
18101810
assertEquals(nextPageResponse.getClass(), RecordingList.class);
@@ -1841,7 +1841,7 @@ public void listSmsMessagesGetNextPageTest() throws ApiException {
18411841
"/Accounts/{accountId}/Messages"
18421842
.replaceAll(
18431843
"\\{" + "accountId" + "\\}",
1844-
"AC2d721074c7265c419cf76a82722854a3c0d595be");
1844+
"AC0123456789abcdefABCDEF0123456789abcdef00");
18451845
response.setNextPageUri(localVarNextPageUri + "?cursor=1");
18461846
MessagesList nextPageResponse = this.apiInstance.getNextPage(response);
18471847
assertEquals(nextPageResponse.getClass(), MessagesList.class);

0 commit comments

Comments
 (0)