Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cbf182f

Browse filesBrowse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@eede99d9.
1 parent baf0d69 commit cbf182f
Copy full SHA for cbf182f

6 files changed

+13-12Lines changed: 13 additions & 12 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ All endpoints in the API follow REST conventions and use standard HTTP methods.
1010

1111
See the next sections for more information on how to use the Segment Public API Java SDK.
1212

13-
Latest API and SDK version: 73.0.0
13+
Latest API and SDK version: 73.0.1
1414

1515
## Requirements
1616

@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
2828
<dependency>
2929
<groupId>com.segment.publicapi</groupId>
3030
<artifactId>segment-publicapi</artifactId>
31-
<version>73.0.0</version>
31+
<version>73.0.1</version>
3232
<scope>compile</scope>
3333
</dependency>
3434
```
@@ -44,7 +44,7 @@ Add this dependency to your project's build file:
4444
}
4545
4646
dependencies {
47-
implementation "com.segment.publicapi:segment-publicapi:73.0.0"
47+
implementation "com.segment.publicapi:segment-publicapi:73.0.1"
4848
}
4949
```
5050

@@ -58,7 +58,7 @@ mvn clean package
5858

5959
Then manually install the following JARs:
6060

61-
* `target/segment-publicapi-73.0.0.jar`
61+
* `target/segment-publicapi-73.0.1.jar`
6262
* `target/lib/*.jar`
6363

6464
You are now ready to start making calls to Public API!
Collapse file

‎VERSION‎

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
73.0.0
1+
73.0.1
Collapse file

‎pom.xml‎

Copy file name to clipboardExpand all lines: pom.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>segment-publicapi</artifactId>
66
<packaging>jar</packaging>
77
<name>segment-publicapi</name>
8-
<version>73.0.0</version>
8+
<version>73.0.1</version>
99
<url>https://segment.com/docs/api/public-api/</url>
1010
<description>Segment Public API</description>
1111
<scm>
Collapse file

‎src/main/java/com/segment/publicapi/ApiClient.java‎

Copy file name to clipboardExpand all lines: src/main/java/com/segment/publicapi/ApiClient.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private void init() {
123123
json = new JSON();
124124

125125
// Set default User-Agent.
126-
setUserAgent("Public API SDK 73.0.0 (Java)");
126+
setUserAgent("Public API SDK 73.0.1 (Java)");
127127

128128
authentications = new HashMap<String, Authentication>();
129129
}
Collapse file

‎src/main/java/com/segment/publicapi/Configuration.java‎

Copy file name to clipboardExpand all lines: src/main/java/com/segment/publicapi/Configuration.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
package com.segment.publicapi;
1313

1414
public class Configuration {
15-
public static final String VERSION = "73.0.0";
15+
public static final String VERSION = "73.0.1";
1616

1717
private static ApiClient defaultApiClient = new ApiClient();
1818

Collapse file

‎src/main/java/com/segment/publicapi/models/AddActivationToAudienceAlphaInput.java‎

Copy file name to clipboardExpand all lines: src/main/java/com/segment/publicapi/models/AddActivationToAudienceAlphaInput.java
+5-4Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import java.util.Objects;
2828
import java.util.Set;
2929

30-
/** Input to create an activation. */
30+
/** AddActivationToAudienceAlphaInput */
3131
public class AddActivationToAudienceAlphaInput {
3232
public static final String SERIALIZED_NAME_ENABLED = "enabled";
3333

@@ -117,9 +117,10 @@ public AddActivationToAudienceAlphaInput activationType(String activationType) {
117117
* Determines when an event is sent to the Destination. Possible values: Audience Entered: Sends
118118
* an event when a profile or entity enters the audience. Audience Exited: Sends an event when a
119119
* profile or entity exits the audience. Audience Membership Changed: Sends an event for both
120-
* entries and exits. This does not apply to entities. Note that events are sent for the
121-
* profile, unless the audience is a Linked Audience. In that case, events are sent for the
122-
* target entity defined for that audience.
120+
* entries and exits. This does not apply to entities. Entity Added: Sends an event when an
121+
* entity is added to the audience. Entity Removed: Sends an event when an entity is removed
122+
* from the audience. Note that events are sent for the profile, unless the audience is a Linked
123+
* Audience. In that case, events are sent for the target entity defined for that audience.
123124
*
124125
* @return activationType
125126
*/

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.