Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Add the dependency in your `pom.xml` file:
<dependency>
<groupId>com.pipedream</groupId>
<artifactId>pipedream</artifactId>
<version>1.1.4</version>
<version>1.1.5</version>
</dependency>
```

Expand Down Expand Up @@ -119,7 +119,7 @@ try{

### Custom Client

This SDK is built to work with any instance of `OkHttpClient`. By default, if no client is provided, the SDK will construct one.
This SDK is built to work with any instance of `OkHttpClient`. By default, if no client is provided, the SDK will construct one.
However, you can pass your own client like so:

```java
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ java {

group = 'com.pipedream'

version = '1.1.4'
version = '1.1.5'

jar {
dependsOn(":generatePomFileForMavenPublication")
Expand Down Expand Up @@ -80,7 +80,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.pipedream'
artifactId = 'pipedream'
version = '1.1.4'
version = '1.1.5'
from components.java
pom {
name = 'pipedream'
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/pipedream/api/core/ClientOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ private ClientOptions(
this.headers.putAll(headers);
this.headers.putAll(new HashMap<String, String>() {
{
put("User-Agent", "com.pipedream:pipedream/1.1.4");
put("User-Agent", "com.pipedream:pipedream/1.1.5");
put("X-Fern-Language", "JAVA");
put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk");
put("X-Fern-SDK-Version", "1.1.4");
put("X-Fern-SDK-Version", "1.1.5");
}
});
this.headerSuppliers = headerSuppliers;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,23 +128,23 @@ public Optional<AppsListRequestSortDirection> getSortDirection() {
}

/**
* @return Filter to apps that have components (actions or triggers)
* @return Only return apps that have components (actions or triggers)
*/
@JsonProperty("has_components")
public Optional<Boolean> getHasComponents() {
return hasComponents;
}

/**
* @return Filter to apps that have actions
* @return Only return apps that have actions
*/
@JsonProperty("has_actions")
public Optional<Boolean> getHasActions() {
return hasActions;
}

/**
* @return Filter to apps that have triggers
* @return Only return apps that have triggers
*/
@JsonProperty("has_triggers")
public Optional<Boolean> getHasTriggers() {
Expand Down Expand Up @@ -344,7 +344,7 @@ public Builder sortDirection(AppsListRequestSortDirection sortDirection) {
}

/**
* <p>Filter to apps that have components (actions or triggers)</p>
* <p>Only return apps that have components (actions or triggers)</p>
*/
@JsonSetter(value = "has_components", nulls = Nulls.SKIP)
public Builder hasComponents(Optional<Boolean> hasComponents) {
Expand All @@ -358,7 +358,7 @@ public Builder hasComponents(Boolean hasComponents) {
}

/**
* <p>Filter to apps that have actions</p>
* <p>Only return apps that have actions</p>
*/
@JsonSetter(value = "has_actions", nulls = Nulls.SKIP)
public Builder hasActions(Optional<Boolean> hasActions) {
Expand All @@ -372,7 +372,7 @@ public Builder hasActions(Boolean hasActions) {
}

/**
* <p>Filter to apps that have triggers</p>
* <p>Only return apps that have triggers</p>
*/
@JsonSetter(value = "has_triggers", nulls = Nulls.SKIP)
public Builder hasTriggers(Optional<Boolean> hasTriggers) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Optional<List<ConfigurePropOptionsItem>> getOptions() {
/**
* @return Available options for the configured prop
*/
@JsonProperty("string_options")
@JsonProperty("stringOptions")
public Optional<List<String>> getStringOptions() {
return stringOptions;
}
Expand Down Expand Up @@ -155,7 +155,7 @@ public Builder options(List<ConfigurePropOptionsItem> options) {
/**
* <p>Available options for the configured prop</p>
*/
@JsonSetter(value = "string_options", nulls = Nulls.SKIP)
@JsonSetter(value = "stringOptions", nulls = Nulls.SKIP)
public Builder stringOptions(Optional<List<String>> stringOptions) {
this.stringOptions = stringOptions;
return this;
Expand Down