Skip to content

Commit d5f8857

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@ce47d9d3.
1 parent ec34c65 commit d5f8857

File tree

6 files changed

+21
-17
lines changed

6 files changed

+21
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
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: 61.0.1
13+
Latest API and SDK version: 61.1.0
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>61.0.1</version>
31+
<version>61.1.0</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:61.0.1"
47+
implementation "com.segment.publicapi:segment-publicapi:61.1.0"
4848
}
4949
```
5050

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

5959
Then manually install the following JARs:
6060

61-
* `target/segment-publicapi-61.0.1.jar`
61+
* `target/segment-publicapi-61.1.0.jar`
6262
* `target/lib/*.jar`
6363

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

pom.xml

Lines 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>61.0.1</version>
8+
<version>61.1.0</version>
99
<url>https://segment.com/docs/api/public-api/</url>
1010
<description>Segment Public API</description>
1111
<scm>

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

Lines 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 61.0.1 (Java)");
126+
setUserAgent("Public API SDK 61.1.0 (Java)");
127127

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

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

Lines 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 = "61.0.1";
15+
public static final String VERSION = "61.1.0";
1616

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

src/main/java/com/segment/publicapi/models/AudienceOptions.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,13 @@ public AudienceOptions backfillEventDataDays(BigDecimal backfillEventDataDays) {
111111
}
112112

113113
/**
114-
* If specified and positive, the value of this field indicates the number of days, specified
115-
* from the date the audience was created, that event data will be included from when
116-
* determining audience membership. If unspecified, defer to the value of
117-
* &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely
118-
* included or entirely excluded when determining audience membership.
114+
* If specified, the value of this field indicates the number of days (specified from the date
115+
* the audience was created) that event data will be included from when determining audience
116+
* membership. If not specified, the default is set to the maximum event window size, or 7 days
117+
* if no window condition is defined. Note that this is applied on a best-effort basis and may
118+
* not always be applicable. In such cases, the response will not return a backfillEventDataDays
119+
* value, and all available data will be taken into account. Note that includeHistoricalData
120+
* must be set to true.
119121
*
120122
* @return backfillEventDataDays
121123
*/

src/main/java/com/segment/publicapi/models/AudienceOptionsWithLookback.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,13 @@ public AudienceOptionsWithLookback backfillEventDataDays(BigDecimal backfillEven
109109
}
110110

111111
/**
112-
* If specified and positive, the value of this field indicates the number of days, specified
113-
* from the date the audience was created, that event data will be included from when
114-
* determining audience membership. If unspecified, defer to the value of
115-
* &#x60;includeHistoricalData&#x60; to determine whether historical data is either entirely
116-
* included or entirely excluded when determining audience membership.
112+
* If specified, the value of this field indicates the number of days (specified from the date
113+
* the audience was created) that event data will be included from when determining audience
114+
* membership. If not specified, the default is set to the maximum event window size, or 7 days
115+
* if no window condition is defined. Note that this is applied on a best-effort basis and may
116+
* not always be applicable. In such cases, the response will not return a backfillEventDataDays
117+
* value, and all available data will be taken into account. Note that includeHistoricalData
118+
* must be set to true.
117119
*
118120
* @return backfillEventDataDays
119121
*/

0 commit comments

Comments
 (0)