Skip to content

Commit 9506099

Browse files
SDK regeneration
1 parent 31ccb60 commit 9506099

File tree

1,496 files changed

+92940
-87682
lines changed

Some content is hidden

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

1,496 files changed

+92940
-87682
lines changed

.fern/metadata.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
"generatorName": "fernapi/fern-java-sdk",
44
"generatorVersion": "3.24.1",
55
"generatorConfig": {
6+
"package-prefix": "com.icepanel",
67
"client-class-name": "IcePanelClient",
7-
"publish-to": "central"
8+
"publish-to": "central",
9+
"collapse-optional-nullable": true,
10+
"enable-inline-types": true,
11+
"inline-path-parameters": true,
12+
"package-layout": "flat",
13+
"use-local-date-for-dates": true
814
}
915
}

README.md

Lines changed: 11 additions & 11 deletions
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.icepanel</groupId>
4242
<artifactId>sdk</artifactId>
43-
<version>0.0.440</version>
43+
<version>0.0.441</version>
4444
</dependency>
4545
```
4646

@@ -53,8 +53,8 @@ A full reference for this library is available [here](https://github.com/IcePane
5353
This SDK allows you to configure different environments for API requests.
5454

5555
```java
56-
import com.icepanel.api.IcePanelClient;
57-
import com.icepanel.api.core.Environment;
56+
import com.icepanel.IcePanelClient;
57+
import com.icepanel.core.Environment;
5858

5959
IcePanelClient client = IcePanelClient
6060
.builder()
@@ -67,7 +67,7 @@ IcePanelClient client = IcePanelClient
6767
You can set a custom base URL when constructing the client.
6868

6969
```java
70-
import com.icepanel.api.IcePanelClient;
70+
import com.icepanel.IcePanelClient;
7171

7272
IcePanelClient client = IcePanelClient
7373
.builder()
@@ -80,7 +80,7 @@ IcePanelClient client = IcePanelClient
8080
When the API returns a non-success status code (4xx or 5xx response), an API exception will be thrown.
8181

8282
```java
83-
import com.icepanel.api.core.IcepanelApiApiException;
83+
import com.icepanel.core.IcepanelApiApiException;
8484

8585
try{
8686
client.model().objects().list(...);
@@ -97,7 +97,7 @@ This SDK is built to work with any instance of `OkHttpClient`. By default, if no
9797
However, you can pass your own client like so:
9898

9999
```java
100-
import com.icepanel.api.IcePanelClient;
100+
import com.icepanel.IcePanelClient;
101101
import okhttp3.OkHttpClient;
102102

103103
OkHttpClient customClient = ...;
@@ -125,7 +125,7 @@ A request is deemed retryable when any of the following HTTP status codes is ret
125125
Use the `maxRetries` client option to configure this behavior.
126126

127127
```java
128-
import com.icepanel.api.IcePanelClient;
128+
import com.icepanel.IcePanelClient;
129129

130130
IcePanelClient client = IcePanelClient
131131
.builder()
@@ -137,8 +137,8 @@ IcePanelClient client = IcePanelClient
137137

138138
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
139139
```java
140-
import com.icepanel.api.IcePanelClient;
141-
import com.icepanel.api.core.RequestOptions;
140+
import com.icepanel.IcePanelClient;
141+
import com.icepanel.core.RequestOptions;
142142

143143
// Client level
144144
IcePanelClient client = IcePanelClient
@@ -161,8 +161,8 @@ client.model().objects().list(
161161
The SDK allows you to add custom headers to requests. You can configure headers at the client level or at the request level.
162162

163163
```java
164-
import com.icepanel.api.IcePanelClient;
165-
import com.icepanel.api.core.RequestOptions;
164+
import com.icepanel.IcePanelClient;
165+
import com.icepanel.core.RequestOptions;
166166

167167
// Client level
168168
IcePanelClient client = IcePanelClient

build.gradle

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

4848
group = 'com.icepanel'
4949

50-
version = '0.0.440'
50+
version = '0.0.441'
5151

5252
jar {
5353
dependsOn(":generatePomFileForMavenPublication")
@@ -78,7 +78,7 @@ publishing {
7878
maven(MavenPublication) {
7979
groupId = 'com.icepanel'
8080
artifactId = 'sdk'
81-
version = '0.0.440'
81+
version = '0.0.441'
8282
from components.java
8383
pom {
8484
name = 'IcePanel <mail@icepanel.io>'

0 commit comments

Comments
 (0)