diff --git a/README.md b/README.md index 662c6e6..ff289f1 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Add the dependency in your `pom.xml` file: com.pipedream pipedream - 1.1.4 + 1.1.5 ``` @@ -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 diff --git a/build.gradle b/build.gradle index 7a0cd54..72516ed 100644 --- a/build.gradle +++ b/build.gradle @@ -49,7 +49,7 @@ java { group = 'com.pipedream' -version = '1.1.4' +version = '1.1.5' jar { dependsOn(":generatePomFileForMavenPublication") @@ -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' diff --git a/src/main/java/com/pipedream/api/core/ClientOptions.java b/src/main/java/com/pipedream/api/core/ClientOptions.java index 52183c9..5964fab 100644 --- a/src/main/java/com/pipedream/api/core/ClientOptions.java +++ b/src/main/java/com/pipedream/api/core/ClientOptions.java @@ -35,10 +35,10 @@ private ClientOptions( this.headers.putAll(headers); this.headers.putAll(new HashMap() { { - 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; diff --git a/src/main/java/com/pipedream/api/resources/apps/requests/AppsListRequest.java b/src/main/java/com/pipedream/api/resources/apps/requests/AppsListRequest.java index 6d9c666..962879c 100644 --- a/src/main/java/com/pipedream/api/resources/apps/requests/AppsListRequest.java +++ b/src/main/java/com/pipedream/api/resources/apps/requests/AppsListRequest.java @@ -128,7 +128,7 @@ public Optional 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 getHasComponents() { @@ -136,7 +136,7 @@ public Optional getHasComponents() { } /** - * @return Filter to apps that have actions + * @return Only return apps that have actions */ @JsonProperty("has_actions") public Optional getHasActions() { @@ -144,7 +144,7 @@ public Optional getHasActions() { } /** - * @return Filter to apps that have triggers + * @return Only return apps that have triggers */ @JsonProperty("has_triggers") public Optional getHasTriggers() { @@ -344,7 +344,7 @@ public Builder sortDirection(AppsListRequestSortDirection sortDirection) { } /** - *

Filter to apps that have components (actions or triggers)

+ *

Only return apps that have components (actions or triggers)

*/ @JsonSetter(value = "has_components", nulls = Nulls.SKIP) public Builder hasComponents(Optional hasComponents) { @@ -358,7 +358,7 @@ public Builder hasComponents(Boolean hasComponents) { } /** - *

Filter to apps that have actions

+ *

Only return apps that have actions

*/ @JsonSetter(value = "has_actions", nulls = Nulls.SKIP) public Builder hasActions(Optional hasActions) { @@ -372,7 +372,7 @@ public Builder hasActions(Boolean hasActions) { } /** - *

Filter to apps that have triggers

+ *

Only return apps that have triggers

*/ @JsonSetter(value = "has_triggers", nulls = Nulls.SKIP) public Builder hasTriggers(Optional hasTriggers) { diff --git a/src/main/java/com/pipedream/api/types/ConfigurePropResponse.java b/src/main/java/com/pipedream/api/types/ConfigurePropResponse.java index f44af77..7e02f68 100644 --- a/src/main/java/com/pipedream/api/types/ConfigurePropResponse.java +++ b/src/main/java/com/pipedream/api/types/ConfigurePropResponse.java @@ -56,7 +56,7 @@ public Optional> getOptions() { /** * @return Available options for the configured prop */ - @JsonProperty("string_options") + @JsonProperty("stringOptions") public Optional> getStringOptions() { return stringOptions; } @@ -155,7 +155,7 @@ public Builder options(List options) { /** *

Available options for the configured prop

*/ - @JsonSetter(value = "string_options", nulls = Nulls.SKIP) + @JsonSetter(value = "stringOptions", nulls = Nulls.SKIP) public Builder stringOptions(Optional> stringOptions) { this.stringOptions = stringOptions; return this;