Skip to content

Commit c4ac6b4

Browse files
author
PureCloud Jenkins
committed
11.0.0
1 parent 3eaf673 commit c4ac6b4

446 files changed

Lines changed: 1485 additions & 1415 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build/docs/EventPresenceType.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ title: EventPresenceType
1515

1616
* `JOIN` (value: `"Join"`)
1717

18+
* `SIGNIN` (value: `"SignIn"`)
19+
1820

1921

build/docs/SessionResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ title: SessionResponse
1414
| **clearedExistingSession** | <!----><!---->**Boolean**<!----> | | [optional] |
1515
| **allowedMedia** | <!----><!---->[**AllowedMedia**](AllowedMedia.html)<!----> | | [optional] |
1616
| **blockedExtensions** | <!----><!---->**List&lt;String&gt;**<!----> | | [optional] |
17+
| **maxCustomDataBytes** | <!----><!---->**Double**<!----> | | [optional] |
1718
{: class="table table-striped"}
1819

1920

build/docs/releaseNotes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ Platform API version: 7379
66
# Major Changes (0 changes)
77

88

9-
# Minor Changes (0 changes)
9+
# Minor Changes (1 change)
10+
11+
**SessionResponse** (1 change)
12+
13+
* Optional property maxCustomDataBytes was added
1014

1115

1216
# Point Changes (0 changes)

build/pom.xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
<groupId>cloud.genesys</groupId>
77
<artifactId>web-messaging-sdk</artifactId>
8-
<name>${name}</name>
9-
<version>${version}</version>
10-
<description>${description}</description>
11-
<url>${url}</url>
8+
<name>web-messaging-sdk</name>
9+
<version>11.0.0</version>
10+
<description>A customer-side development kit for creating custom Genesys Cloud Web Messaging experiences</description>
11+
<url>https://developer.mypurecloud.com/api/rest/client-libraries/webmessaging-java/</url>
1212

1313
<developers>
1414
<developer>
@@ -271,9 +271,5 @@
271271
<apache-httpclient-version>4.5.14</apache-httpclient-version>
272272
<okhttpclient-version>4.11.0</okhttpclient-version>
273273
<guava-version>32.1.2-jre</guava-version>
274-
<name>${props.name}</name>
275-
<version>${props.version}</version>
276-
<description>${props.description}</description>
277-
<url>${props.url}</url>
278274
</properties>
279275
</project>

build/props.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
props.name=web-messaging-sdk
2-
props.version=10.3.0
2+
props.version=11.0.0
33
props.description=A customer-side development kit for creating custom Genesys Cloud Web Messaging experiences
44
props.url=https://developer.mypurecloud.com/api/rest/client-libraries/webmessaging-java/

build/src/main/java/cloud/genesys/webmessaging/sdk/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ public static ApiClient defaultClient() {
604604
private Builder(ConnectorProperties properties) {
605605
this.properties = (properties != null) ? properties.copy() : new ConnectorProperties();
606606
withUserAgent(DEFAULT_USER_AGENT);
607-
withDefaultHeader("purecloud-sdk", "10.3.0");
607+
withDefaultHeader("purecloud-sdk", "11.0.0");
608608
}
609609

610610
public Builder withDefaultHeader(String header, String value) {

build/src/main/java/cloud/genesys/webmessaging/sdk/model/EventPresenceType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public EventPresenceType deserialize(JsonParser jsonParser, DeserializationConte
3232
public enum EventPresenceType {
3333
CLEAR("Clear"),
3434
DISCONNECT("Disconnect"),
35-
JOIN("Join");
35+
JOIN("Join"),
36+
SIGNIN("SignIn");
3637

3738
private String value;
3839

build/src/main/java/cloud/genesys/webmessaging/sdk/model/SessionResponse.java

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public class SessionResponse implements Serializable {
2929
private Boolean clearedExistingSession = null;
3030
private AllowedMedia allowedMedia = null;
3131
private List<String> blockedExtensions = new ArrayList<String>();
32+
private Double maxCustomDataBytes = null;
3233

3334

3435
/**
@@ -133,6 +134,23 @@ public void setBlockedExtensions(List<String> blockedExtensions) {
133134
}
134135

135136

137+
/**
138+
**/
139+
public SessionResponse maxCustomDataBytes(Double maxCustomDataBytes) {
140+
this.maxCustomDataBytes = maxCustomDataBytes;
141+
return this;
142+
}
143+
144+
@ApiModelProperty(example = "null", value = "")
145+
@JsonProperty("maxCustomDataBytes")
146+
public Double getMaxCustomDataBytes() {
147+
return maxCustomDataBytes;
148+
}
149+
public void setMaxCustomDataBytes(Double maxCustomDataBytes) {
150+
this.maxCustomDataBytes = maxCustomDataBytes;
151+
}
152+
153+
136154
@Override
137155
public boolean equals(java.lang.Object o) {
138156
if (this == o) {
@@ -147,12 +165,13 @@ public boolean equals(java.lang.Object o) {
147165
Objects.equals(this.readOnly, sessionResponse.readOnly) &&
148166
Objects.equals(this.clearedExistingSession, sessionResponse.clearedExistingSession) &&
149167
Objects.equals(this.allowedMedia, sessionResponse.allowedMedia) &&
150-
Objects.equals(this.blockedExtensions, sessionResponse.blockedExtensions);
168+
Objects.equals(this.blockedExtensions, sessionResponse.blockedExtensions) &&
169+
Objects.equals(this.maxCustomDataBytes, sessionResponse.maxCustomDataBytes);
151170
}
152171

153172
@Override
154173
public int hashCode() {
155-
return Objects.hash(connected, newSession, readOnly, clearedExistingSession, allowedMedia, blockedExtensions);
174+
return Objects.hash(connected, newSession, readOnly, clearedExistingSession, allowedMedia, blockedExtensions, maxCustomDataBytes);
156175
}
157176

158177
@Override
@@ -166,6 +185,7 @@ public String toString() {
166185
sb.append(" clearedExistingSession: ").append(toIndentedString(clearedExistingSession)).append("\n");
167186
sb.append(" allowedMedia: ").append(toIndentedString(allowedMedia)).append("\n");
168187
sb.append(" blockedExtensions: ").append(toIndentedString(blockedExtensions)).append("\n");
188+
sb.append(" maxCustomDataBytes: ").append(toIndentedString(maxCustomDataBytes)).append("\n");
169189
sb.append("}");
170190
return sb.toString();
171191
}

build/target/apidocs/allclasses-index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
4-
<!-- Generated by javadoc (17) on Wed Oct 04 17:13:52 UTC 2023 -->
5-
<title>All Classes and Interfaces (web-messaging-sdk 10.3.0 API)</title>
4+
<!-- Generated by javadoc (17) on Thu Oct 12 08:43:18 UTC 2023 -->
5+
<title>All Classes and Interfaces (web-messaging-sdk 11.0.0 API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8-
<meta name="dc.created" content="2023-10-04">
8+
<meta name="dc.created" content="2023-10-12">
99
<meta name="description" content="class index">
1010
<meta name="generator" content="javadoc/AllClassesIndexWriter">
1111
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

build/target/apidocs/allpackages-index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
4-
<!-- Generated by javadoc (17) on Wed Oct 04 17:13:52 UTC 2023 -->
5-
<title>All Packages (web-messaging-sdk 10.3.0 API)</title>
4+
<!-- Generated by javadoc (17) on Thu Oct 12 08:43:18 UTC 2023 -->
5+
<title>All Packages (web-messaging-sdk 11.0.0 API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8-
<meta name="dc.created" content="2023-10-04">
8+
<meta name="dc.created" content="2023-10-12">
99
<meta name="description" content="package index">
1010
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
1111
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

0 commit comments

Comments
 (0)