Skip to content

Commit 6f21b89

Browse files
SDK regeneration
1 parent 8ca5685 commit 6f21b89

30 files changed

+13
-63
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add the dependency in your `pom.xml` file:
4040
<dependency>
4141
<groupId>com.pipedream</groupId>
4242
<artifactId>pipedream</artifactId>
43-
<version>1.1.4</version>
43+
<version>1.1.5</version>
4444
</dependency>
4545
```
4646

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ java {
4949

5050
group = 'com.pipedream'
5151

52-
version = '1.1.4'
52+
version = '1.1.5'
5353

5454
jar {
5555
dependsOn(":generatePomFileForMavenPublication")
@@ -80,7 +80,7 @@ publishing {
8080
maven(MavenPublication) {
8181
groupId = 'com.pipedream'
8282
artifactId = 'pipedream'
83-
version = '1.1.4'
83+
version = '1.1.5'
8484
from components.java
8585
pom {
8686
name = 'pipedream'

src/main/java/com/pipedream/api/core/ClientOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ private ClientOptions(
3535
this.headers.putAll(headers);
3636
this.headers.putAll(new HashMap<String, String>() {
3737
{
38-
put("User-Agent", "com.pipedream:pipedream/1.1.4");
38+
put("User-Agent", "com.pipedream:pipedream/1.1.5");
3939
put("X-Fern-Language", "JAVA");
4040
put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk");
41-
put("X-Fern-SDK-Version", "1.1.4");
41+
put("X-Fern-SDK-Version", "1.1.5");
4242
}
4343
});
4444
this.headerSuppliers = headerSuppliers;

src/main/java/com/pipedream/api/resources/apps/requests/AppsListRequest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,23 +128,23 @@ public Optional<AppsListRequestSortDirection> getSortDirection() {
128128
}
129129

130130
/**
131-
* @return Filter to apps that have components (actions or triggers)
131+
* @return Only return apps that have components (actions or triggers)
132132
*/
133133
@JsonProperty("has_components")
134134
public Optional<Boolean> getHasComponents() {
135135
return hasComponents;
136136
}
137137

138138
/**
139-
* @return Filter to apps that have actions
139+
* @return Only return apps that have actions
140140
*/
141141
@JsonProperty("has_actions")
142142
public Optional<Boolean> getHasActions() {
143143
return hasActions;
144144
}
145145

146146
/**
147-
* @return Filter to apps that have triggers
147+
* @return Only return apps that have triggers
148148
*/
149149
@JsonProperty("has_triggers")
150150
public Optional<Boolean> getHasTriggers() {
@@ -344,7 +344,7 @@ public Builder sortDirection(AppsListRequestSortDirection sortDirection) {
344344
}
345345

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

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

374374
/**
375-
* <p>Filter to apps that have triggers</p>
375+
* <p>Only return apps that have triggers</p>
376376
*/
377377
@JsonSetter(value = "has_triggers", nulls = Nulls.SKIP)
378378
public Builder hasTriggers(Optional<Boolean> hasTriggers) {

src/main/java/com/pipedream/api/types/ConfigurablePropAirtableBaseId.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import com.fasterxml.jackson.annotation.JsonAnyGetter;
77
import com.fasterxml.jackson.annotation.JsonAnySetter;
8-
import com.fasterxml.jackson.annotation.JsonIgnore;
98
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
109
import com.fasterxml.jackson.annotation.JsonInclude;
1110
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -378,7 +377,6 @@ public _FinalStage appProp(@NotNull String appProp) {
378377
* @return Reference to {@code this} so that method calls can be chained together.
379378
*/
380379
@java.lang.Override
381-
@JsonIgnore
382380
public _FinalStage withLabel(Boolean withLabel) {
383381
this.withLabel = Optional.ofNullable(withLabel);
384382
return this;

src/main/java/com/pipedream/api/types/ConfigurablePropAirtableFieldId.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import com.fasterxml.jackson.annotation.JsonAnyGetter;
77
import com.fasterxml.jackson.annotation.JsonAnySetter;
8-
import com.fasterxml.jackson.annotation.JsonIgnore;
98
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
109
import com.fasterxml.jackson.annotation.JsonInclude;
1110
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -378,7 +377,6 @@ public _FinalStage tableIdProp(@NotNull String tableIdProp) {
378377
* @return Reference to {@code this} so that method calls can be chained together.
379378
*/
380379
@java.lang.Override
381-
@JsonIgnore
382380
public _FinalStage withLabel(Boolean withLabel) {
383381
this.withLabel = Optional.ofNullable(withLabel);
384382
return this;

src/main/java/com/pipedream/api/types/ConfigurablePropAirtableTableId.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import com.fasterxml.jackson.annotation.JsonAnyGetter;
77
import com.fasterxml.jackson.annotation.JsonAnySetter;
8-
import com.fasterxml.jackson.annotation.JsonIgnore;
98
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
109
import com.fasterxml.jackson.annotation.JsonInclude;
1110
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -378,7 +377,6 @@ public _FinalStage baseIdProp(@NotNull String baseIdProp) {
378377
* @return Reference to {@code this} so that method calls can be chained together.
379378
*/
380379
@java.lang.Override
381-
@JsonIgnore
382380
public _FinalStage withLabel(Boolean withLabel) {
383381
this.withLabel = Optional.ofNullable(withLabel);
384382
return this;

src/main/java/com/pipedream/api/types/ConfigurablePropAirtableViewId.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import com.fasterxml.jackson.annotation.JsonAnyGetter;
77
import com.fasterxml.jackson.annotation.JsonAnySetter;
8-
import com.fasterxml.jackson.annotation.JsonIgnore;
98
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
109
import com.fasterxml.jackson.annotation.JsonInclude;
1110
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -378,7 +377,6 @@ public _FinalStage tableIdProp(@NotNull String tableIdProp) {
378377
* @return Reference to {@code this} so that method calls can be chained together.
379378
*/
380379
@java.lang.Override
381-
@JsonIgnore
382380
public _FinalStage withLabel(Boolean withLabel) {
383381
this.withLabel = Optional.ofNullable(withLabel);
384382
return this;

src/main/java/com/pipedream/api/types/ConfigurablePropAlert.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import com.fasterxml.jackson.annotation.JsonAnyGetter;
77
import com.fasterxml.jackson.annotation.JsonAnySetter;
8-
import com.fasterxml.jackson.annotation.JsonIgnore;
98
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
109
import com.fasterxml.jackson.annotation.JsonInclude;
1110
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -409,7 +408,6 @@ public _FinalStage alertType(Optional<ConfigurablePropAlertType> alertType) {
409408
* @return Reference to {@code this} so that method calls can be chained together.
410409
*/
411410
@java.lang.Override
412-
@JsonIgnore
413411
public _FinalStage withLabel(Boolean withLabel) {
414412
this.withLabel = Optional.ofNullable(withLabel);
415413
return this;

src/main/java/com/pipedream/api/types/ConfigurablePropAny.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import com.fasterxml.jackson.annotation.JsonAnyGetter;
77
import com.fasterxml.jackson.annotation.JsonAnySetter;
8-
import com.fasterxml.jackson.annotation.JsonIgnore;
98
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
109
import com.fasterxml.jackson.annotation.JsonInclude;
1110
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -405,7 +404,6 @@ public _FinalStage default_(Optional<Object> default_) {
405404
* @return Reference to {@code this} so that method calls can be chained together.
406405
*/
407406
@java.lang.Override
408-
@JsonIgnore
409407
public _FinalStage withLabel(Boolean withLabel) {
410408
this.withLabel = Optional.ofNullable(withLabel);
411409
return this;

0 commit comments

Comments
 (0)