Skip to content

Commit a6ed11b

Browse files
committed
Make edits to a property in the CreateConferenceRequest model
1 parent 367fb90 commit a6ed11b

File tree

9 files changed

+21
-9
lines changed

9 files changed

+21
-9
lines changed

CHANGELOG.md

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

1010
None
1111

12+
<a name="6.1.2"></a>
13+
14+
## [6.1.2] - 2025-02-18
15+
16+
### Changed
17+
18+
- Make statusCallbackURL property mandatory for CreateConference
19+
1220
<a name="6.1.1"></a>
1321

1422
## [6.1.1] - 2025-02-05

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.1.1</version>
43+
<version>6.1.2</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.1.1"
59+
implementation "com.github.freeclimbapi:freeclimb-java-client:6.1.2"
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.1.1.jar`
75+
* `target/freeclimb-java-client-6.1.2.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.1.1'
7+
version = '6.1.2'
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.1.1",
5+
version := "6.1.2",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/CreateConferenceRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**playBeep** | **PlayBeep** | | [optional]
1212
**record** | **Boolean** | Setting to &#x60;true&#x60; records the entire Conference. | [optional]
1313
**waitUrl** | **URI** | If specified, a URL for the audio file that provides custom hold music for the Conference when it is in the populated state. Otherwise, FreeClimb uses a system default audio file. This is always fetched using HTTP GET and is fetched just once &amp;mdash; when the Conference is created. | [optional]
14-
**statusCallbackUrl** | **URI** | This URL is invoked when the status of the Conference changes. For more information, see **statusCallbackUrl** (below). | [optional]
14+
**statusCallbackUrl** | **URI** | This URL is invoked when the status of the Conference changes. For more information, see **statusCallbackUrl** (below). |
1515

1616

1717

openapi.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3658,6 +3658,9 @@
36583658
},
36593659
"CreateConferenceRequest": {
36603660
"type": "object",
3661+
"required": [
3662+
"statusCallbackUrl"
3663+
],
36613664
"properties": {
36623665
"alias": {
36633666
"type": "string",

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.1.1</version>
8+
<version>6.1.2</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.1.1/java");
124+
setUserAgent("OpenAPI-Generator/6.1.2/java");
125125

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

src/main/java/com/github/freeclimbapi/models/CreateConferenceRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,9 @@ public CreateConferenceRequest statusCallbackUrl(URI statusCallbackUrl) {
159159
*
160160
* @return statusCallbackUrl
161161
*/
162-
@javax.annotation.Nullable
162+
@javax.annotation.Nonnull
163163
@ApiModelProperty(
164+
required = true,
164165
value =
165166
"This URL is invoked when the status of the Conference changes. For more"
166167
+ " information, see **statusCallbackUrl** (below).")

0 commit comments

Comments
 (0)