Skip to content

Commit 637275c

Browse files
committed
SDK regeneration
1 parent db65110 commit 637275c

File tree

76 files changed

+1409
-1293
lines changed

Some content is hidden

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

76 files changed

+1409
-1293
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
107 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-
#Fri Jul 18 22:37:14 UTC 2025
1+
#Wed Jul 23 18:16:20 UTC 2025
22
gradle.version=8.14.3

README.md

Lines changed: 13 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.220</version>
28+
<version>0.0.236</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.BaseClient;
39+
import com.pipedream.api.PipedreamClient;
4040
import com.pipedream.api.resources.accounts.requests.CreateAccountRequest;
4141

4242
public class Example {
4343
public static void main(String[] args) {
44-
BaseClient client = BaseClient
44+
PipedreamClient client = PipedreamClient
4545
.builder()
4646
.clientId("<clientId>")
4747
.clientSecret("<clientSecret>")
@@ -65,10 +65,10 @@ public class Example {
6565
This SDK allows you to configure different environments for API requests.
6666

6767
```java
68-
import com.pipedream.api.BaseClient;
68+
import com.pipedream.api.PipedreamClient;
6969
import com.pipedream.api.core.Environment;
7070

71-
BaseClient client = BaseClient
71+
PipedreamClient client = PipedreamClient
7272
.builder()
7373
.environment(Environment.Prod)
7474
.build();
@@ -79,9 +79,9 @@ BaseClient client = BaseClient
7979
You can set a custom base URL when constructing the client.
8080

8181
```java
82-
import com.pipedream.api.BaseClient;
82+
import com.pipedream.api.PipedreamClient;
8383

84-
BaseClient client = BaseClient
84+
PipedreamClient client = PipedreamClient
8585
.builder()
8686
.url("https://example.com")
8787
.build();
@@ -109,12 +109,12 @@ This SDK is built to work with any instance of `OkHttpClient`. By default, if no
109109
However, you can pass your own client like so:
110110

111111
```java
112-
import com.pipedream.api.BaseClient;
112+
import com.pipedream.api.PipedreamClient;
113113
import okhttp3.OkHttpClient;
114114

115115
OkHttpClient customClient = ...;
116116

117-
BaseClient client = BaseClient
117+
PipedreamClient client = PipedreamClient
118118
.builder()
119119
.httpClient(customClient)
120120
.build();
@@ -135,9 +135,9 @@ A request is deemed retryable when any of the following HTTP status codes is ret
135135
Use the `maxRetries` client option to configure this behavior.
136136

137137
```java
138-
import com.pipedream.api.BaseClient;
138+
import com.pipedream.api.PipedreamClient;
139139

140-
BaseClient client = BaseClient
140+
PipedreamClient client = PipedreamClient
141141
.builder()
142142
.maxRetries(1)
143143
.build();
@@ -148,11 +148,11 @@ BaseClient client = BaseClient
148148
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
149149

150150
```java
151-
import com.pipedream.api.BaseClient;
151+
import com.pipedream.api.PipedreamClient;
152152
import com.pipedream.api.core.RequestOptions;
153153

154154
// Client level
155-
BaseClient client = BaseClient
155+
PipedreamClient client = PipedreamClient
156156
.builder()
157157
.timeout(10)
158158
.build();

0 commit comments

Comments
 (0)