Skip to content

Commit 6e5d82b

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@baf62695.
1 parent 649c2f2 commit 6e5d82b

File tree

6 files changed

+26
-21
lines changed

6 files changed

+26
-21
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: 60.1.0
13+
Latest API and SDK version: 60.1.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>60.1.0</version>
31+
<version>60.1.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:60.1.0"
47+
implementation "com.segment.publicapi:segment-publicapi:60.1.1"
4848
}
4949
```
5050

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

5959
Then manually install the following JARs:
6060

61-
* `target/segment-publicapi-60.1.0.jar`
61+
* `target/segment-publicapi-60.1.1.jar`
6262
* `target/lib/*.jar`
6363

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

docs/AudiencesApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ All URIs are relative to *https://api.segmentapis.com*
2727
2828
Add Audience Schedule to Audience
2929

30-
The ability to configure the run schedule for an Audience is limited to Linked Audiences (audienceType &#x3D; LINKED). • This endpoint is in **Alpha** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information.
30+
The ability to configure the run schedule for an Audience is limited to Linked Audiences (audienceType &#x3D; LINKED). Note that if a Linked Audience remains disabled for 90 days Segment will delete the associated schedule and a new schedule will need to be created. • This endpoint is in **Alpha** testing. Please submit any feedback by sending an email to [email protected]. • In order to successfully call this endpoint, the specified Workspace needs to have the Audience feature enabled. Please reach out to your customer success manager for more information.
3131

3232
### Example
3333

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>60.1.0</version>
8+
<version>60.1.1</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 60.1.0 (Java)");
126+
setUserAgent("Public API SDK 60.1.1 (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 = "60.1.0";
15+
public static final String VERSION = "60.1.1";
1616

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

src/main/java/com/segment/publicapi/api/AudiencesApi.java

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,12 @@ private okhttp3.Call addAudienceScheduleToAudienceValidateBeforeCall(
201201

202202
/**
203203
* Add Audience Schedule to Audience The ability to configure the run schedule for an Audience
204-
* is limited to Linked Audiences (audienceType &#x3D; LINKED). • This endpoint is in **Alpha**
205-
* testing. Please submit any feedback by sending an email to [email protected]. • In order to
206-
* successfully call this endpoint, the specified Workspace needs to have the Audience feature
207-
* enabled. Please reach out to your customer success manager for more information.
204+
* is limited to Linked Audiences (audienceType &#x3D; LINKED). Note that if a Linked Audience
205+
* remains disabled for 90 days Segment will delete the associated schedule and a new schedule
206+
* will need to be created. • This endpoint is in **Alpha** testing. Please submit any feedback
207+
* by sending an email to [email protected]. • In order to successfully call this endpoint,
208+
* the specified Workspace needs to have the Audience feature enabled. Please reach out to your
209+
* customer success manager for more information.
208210
*
209211
* @param spaceId (required)
210212
* @param id (required)
@@ -234,10 +236,12 @@ public AddAudienceScheduleToAudience200Response addAudienceScheduleToAudience(
234236

235237
/**
236238
* Add Audience Schedule to Audience The ability to configure the run schedule for an Audience
237-
* is limited to Linked Audiences (audienceType &#x3D; LINKED). • This endpoint is in **Alpha**
238-
* testing. Please submit any feedback by sending an email to [email protected]. • In order to
239-
* successfully call this endpoint, the specified Workspace needs to have the Audience feature
240-
* enabled. Please reach out to your customer success manager for more information.
239+
* is limited to Linked Audiences (audienceType &#x3D; LINKED). Note that if a Linked Audience
240+
* remains disabled for 90 days Segment will delete the associated schedule and a new schedule
241+
* will need to be created. • This endpoint is in **Alpha** testing. Please submit any feedback
242+
* by sending an email to [email protected]. • In order to successfully call this endpoint,
243+
* the specified Workspace needs to have the Audience feature enabled. Please reach out to your
244+
* customer success manager for more information.
241245
*
242246
* @param spaceId (required)
243247
* @param id (required)
@@ -270,11 +274,12 @@ public AddAudienceScheduleToAudience200Response addAudienceScheduleToAudience(
270274

271275
/**
272276
* Add Audience Schedule to Audience (asynchronously) The ability to configure the run schedule
273-
* for an Audience is limited to Linked Audiences (audienceType &#x3D; LINKED). • This endpoint
274-
* is in **Alpha** testing. Please submit any feedback by sending an email to
275-
* [email protected]. • In order to successfully call this endpoint, the specified Workspace
276-
* needs to have the Audience feature enabled. Please reach out to your customer success manager
277-
* for more information.
277+
* for an Audience is limited to Linked Audiences (audienceType &#x3D; LINKED). Note that if a
278+
* Linked Audience remains disabled for 90 days Segment will delete the associated schedule and
279+
* a new schedule will need to be created. • This endpoint is in **Alpha** testing. Please
280+
* submit any feedback by sending an email to [email protected]. • In order to successfully
281+
* call this endpoint, the specified Workspace needs to have the Audience feature enabled.
282+
* Please reach out to your customer success manager for more information.
278283
*
279284
* @param spaceId (required)
280285
* @param id (required)

0 commit comments

Comments
 (0)