Skip to content

Commit b17aaf9

Browse files
🌿 Fern Regeneration -- July 18, 2025 (PipedreamHQ#8)
SDK regeneration Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent f62e859 commit b17aaf9

File tree

79 files changed

+1445
-1377
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+1445
-1377
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-115 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Thu Jul 17 23:24:55 UTC 2025
1+
#Fri Jul 18 18:33:27 UTC 2025
22
gradle.version=8.14.3

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Add the dependency in your `pom.xml` file:
2525
<dependency>
2626
<groupId>com.pipedream</groupId>
2727
<artifactId>pipedream</artifactId>
28-
<version>0.0.202</version>
28+
<version>0.0.217</version>
2929
</dependency>
3030
```
3131

@@ -36,12 +36,12 @@ Instantiate and use the client with the following:
3636
```java
3737
package com.example.usage;
3838

39-
import com.pipedream.api.PipedreamApiClient;
39+
import com.pipedream.api.BaseClient;
4040
import com.pipedream.api.resources.accounts.requests.CreateAccountRequest;
4141

4242
public class Example {
4343
public static void main(String[] args) {
44-
PipedreamApiClient client = PipedreamApiClient
44+
BaseClient client = BaseClient
4545
.builder()
4646
.clientId("<clientId>")
4747
.clientSecret("<clientSecret>")
@@ -52,6 +52,8 @@ public class Example {
5252
CreateAccountRequest
5353
.builder()
5454
.appSlug("app_slug")
55+
.cfmapJson("cfmap_json")
56+
.connectToken("connect_token")
5557
.build()
5658
);
5759
}
@@ -63,10 +65,10 @@ public class Example {
6365
This SDK allows you to configure different environments for API requests.
6466

6567
```java
66-
import com.pipedream.api.PipedreamApiClient;
68+
import com.pipedream.api.BaseClient;
6769
import com.pipedream.api.core.Environment;
6870

69-
PipedreamApiClient client = PipedreamApiClient
71+
BaseClient client = BaseClient
7072
.builder()
7173
.environment(Environment.Prod)
7274
.build();
@@ -77,9 +79,9 @@ PipedreamApiClient client = PipedreamApiClient
7779
You can set a custom base URL when constructing the client.
7880

7981
```java
80-
import com.pipedream.api.PipedreamApiClient;
82+
import com.pipedream.api.BaseClient;
8183

82-
PipedreamApiClient client = PipedreamApiClient
84+
BaseClient client = BaseClient
8385
.builder()
8486
.url("https://example.com")
8587
.build();
@@ -107,12 +109,12 @@ This SDK is built to work with any instance of `OkHttpClient`. By default, if no
107109
However, you can pass your own client like so:
108110

109111
```java
110-
import com.pipedream.api.PipedreamApiClient;
112+
import com.pipedream.api.BaseClient;
111113
import okhttp3.OkHttpClient;
112114

113115
OkHttpClient customClient = ...;
114116

115-
PipedreamApiClient client = PipedreamApiClient
117+
BaseClient client = BaseClient
116118
.builder()
117119
.httpClient(customClient)
118120
.build();
@@ -133,9 +135,9 @@ A request is deemed retryable when any of the following HTTP status codes is ret
133135
Use the `maxRetries` client option to configure this behavior.
134136

135137
```java
136-
import com.pipedream.api.PipedreamApiClient;
138+
import com.pipedream.api.BaseClient;
137139

138-
PipedreamApiClient client = PipedreamApiClient
140+
BaseClient client = BaseClient
139141
.builder()
140142
.maxRetries(1)
141143
.build();
@@ -146,11 +148,11 @@ PipedreamApiClient client = PipedreamApiClient
146148
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
147149

148150
```java
149-
import com.pipedream.api.PipedreamApiClient;
151+
import com.pipedream.api.BaseClient;
150152
import com.pipedream.api.core.RequestOptions;
151153

152154
// Client level
153-
PipedreamApiClient client = PipedreamApiClient
155+
BaseClient client = BaseClient
154156
.builder()
155157
.timeout(10)
156158
.build();

0 commit comments

Comments
 (0)